NFT
Overview
TokenID
1630
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Feetpix
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "operator-filter-registry/src/OperatorFilterer.sol"; import "./PaymentMinimum.sol"; // __ _ _ // / _| | | (_) // | |_ ___ ___ | |_ _ __ _ __ __ // | _| / _ \ / _ \ | __| | '_ \ | | \ \/ / // | | | __/ | __/ | |_ | |_) | | | > < // |_| \___| \___| \__| | .__/ |_| /_/\_\ // | | // |_| contract Feetpix is ERC721A, Ownable, PaymentMinimum, OperatorFilterer { /** Maximum number of tokens per wallet */ uint256 public constant MAX_WALLET = 10; /** Maximum amount of tokens in collection */ uint256 public constant MAX_SUPPLY = 10000; /** Price per token */ uint256 public cost = 0.0039 ether; /** Max free */ uint256 public free = 7000; /** Base URI */ string public baseURI; /** Burn service */ address public authorizedOperator; /** Whitelist max per wallet */ uint256 public constant MAX_PER_WHITELIST = 10; /** Public sale state */ bool public saleActive = false; /** Presale state */ bool public presaleActive = false; /** Notify on sale state change */ event SaleStateChanged(bool _val); /** Notify on presale state change */ event PresaleStateChanged(bool _val); /** Notify on total supply change */ event TotalSupplyChanged(uint256 _val); constructor( string memory _name, string memory _symbol, uint256 _minimum, address _builder, address[] memory _shareholders, uint256[] memory _shares ) ERC721A(_name, _symbol) PaymentMinimum(_minimum, _builder, _shareholders, _shares) OperatorFilterer(address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6), false) {} /// @notice Returns the base URI function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /// @notice Gets cost to mint n amount of NFTs, taking account for first one free /// @param _numberMinted How many a given wallet has already minted /// @param _numberToMint How many a given wallet is planning to mint /// @param _costPerMint Price of one nft function subtotal(uint256 _numberMinted, uint256 _numberToMint, uint256 _costPerMint) public pure returns (uint256) { return _numberToMint * _costPerMint - (_numberMinted > 0 ? 0 : _costPerMint); } /// @notice Gets number of NFTs minted for a given wallet /// @param _wallet Wallet to check function numberMinted(address _wallet) external view returns (uint256) { return _numberMinted(_wallet); } /// @notice Sets public sale state /// @param _val New sale state function setSaleState(bool _val) external onlyOwner { saleActive = _val; emit SaleStateChanged(_val); } /// @notice Sets presale state /// @param _val New presale state function setPresaleState(bool _val) external onlyOwner { presaleActive = _val; emit PresaleStateChanged(_val); } /// @notice Sets the price /// @param _val New price function setCost(uint256 _val) external onlyOwner { cost = _val; } /// @notice Sets the base metadata URI /// @param _val The new URI function setBaseURI(string calldata _val) external onlyOwner { baseURI = _val; } /// @notice Sets the authorized operator /// @param _val The new operator /// @dev Allows staking service to transfer nfts function setAuthorizedOperator(address _val) external onlyOwner { authorizedOperator = _val; } /// @notice Reserves a set of NFTs for collection owner (giveaways, etc) /// @param _amt The amount to reserve function reserve(uint256 _amt) external onlyOwner { require(free >= _amt, "Cannot exceed free mint limit."); free -= _amt; _mint(msg.sender, _amt); emit TotalSupplyChanged(totalSupply()); } /// @notice Mints a new token in presale /// @param _amt The number of tokens to mint /// @dev Must send cost * amt in ETH function preMint(uint256 _amt) external payable { require(presaleActive, "Presale is not active."); require(_amt <= MAX_PER_WHITELIST, "Amount of tokens exceeds transaction limit."); require(_amt <= free, "Amount exceeds supply."); require(subtotal(_numberMinted(msg.sender), _amt, cost - 0.0019 ether) == msg.value, "ETH sent not equal to cost."); require(free > 0, "Presale has ended."); free -= _amt; // Switch to public once all free mints are gone if (free == 0) { presaleActive = false; saleActive = true; } _safeMint(msg.sender, _amt); emit TotalSupplyChanged(totalSupply()); } /// @notice Mints a new token in public sale /// @param _amt The number of tokens to mint /// @dev Must send cost * amt in ETH function mint(uint256 _amt) external payable { require(saleActive, "Sale is not active."); require(_amt <= MAX_WALLET, "Amount of tokens exceeds transaction limit."); require(totalSupply() + _amt <= MAX_SUPPLY, "Amount exceeds supply."); require(cost * _amt == msg.value, "ETH sent not equal to cost."); _safeMint(msg.sender, _amt); emit TotalSupplyChanged(totalSupply()); } /// @dev Override to use filter operator function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } /// @dev Override to use filter operator /// @dev We give the staking/other service direct access as a convenience to the consumer (one less transaction, gas) function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) { if (authorizedOperator != _msgSender()) { require(from == _msgSenderERC721A() || isApprovedForAll(from, _msgSenderERC721A()), "ERC721A: transfer caller is not owner nor approved"); } super.safeTransferFrom(from, to, tokenId); } /// @dev Override to use filter operator /// @dev We give the staking/other service direct access as a convenience to the consumer (one less transaction, gas) function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public payable override onlyAllowedOperator(from) { if (authorizedOperator != _msgSender()) { require(from == _msgSenderERC721A() || isApprovedForAll(from, _msgSenderERC721A()), "ERC721A: transfer caller is not owner nor approved"); } super.safeTransferFrom(from, to, tokenId, data); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; /// @title Minimum amount payment splitter contract PaymentMinimum is PaymentSplitter { address private immutable AGENCY; uint256 private _minimumPayment; constructor( uint256 _min, address _agency, address[] memory _shareholders, uint256[] memory _shares ) PaymentSplitter(_shareholders, _shares) { _minimumPayment = _min; AGENCY = _agency; } /// @notice Only agency can call modifier onlyAgency(address _account) { require(AGENCY == _account, "PaymentMinimum: Account is not agency."); _; } /// @notice Only after minimum payment is met modifier onlyAfterMinimum() { require(_minimumPayment == 0, "PaymentMinimum: Minimum payment is not met."); _; } /// @notice Function for agency to release minimum funds /// @param _account Agency account function agencyRelease(address payable _account) public virtual onlyAgency(_account) { uint256 _balance = address(this).balance; uint256 _remaining = _minimumPayment; require(_remaining > 0, "PaymentMinimum: Minimum payment is already met."); require (_balance > 0, "PaymentMinimum: Contract has no funds."); uint256 _payment = _balance >= _remaining ? _remaining : _balance; _minimumPayment -= _payment; Address.sendValue(_account, _payment); } /// @dev Require minimum to be met before allowing a call function release(address payable account) public virtual override onlyAfterMinimum() { super.release(account); } /// @dev require minimum to be met before allowing a call function release(IERC20 token, address account) public virtual override onlyAfterMinimum() { super.release(token, account); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID 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` // - [232..255] `extraData` 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // 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 `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // 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++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * 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(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 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`, * 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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from != msg.sender) { _checkFilterOperator(msg.sender); } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { _checkFilterOperator(operator); _; } function _checkFilterOperator(address operator) internal view virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; import "../token/ERC20/utils/SafeERC20.sol"; import "../utils/Address.sol"; import "../utils/Context.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. The distribution of shares is set at the * time of contract deployment and can't be updated thereafter. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Getter for the amount of payee's releasable Ether. */ function releasable(address account) public view returns (uint256) { uint256 totalReceived = address(this).balance + totalReleased(); return _pendingPayment(account, totalReceived, released(account)); } /** * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an * IERC20 contract. */ function releasable(IERC20 token, address account) public view returns (uint256) { uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); return _pendingPayment(account, totalReceived, released(token, account)); } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 payment = releasable(account); require(payment != 0, "PaymentSplitter: account is not due payment"); // _totalReleased is the sum of all values in _released. // If "_totalReleased += payment" does not overflow, then "_released[account] += payment" cannot overflow. _totalReleased += payment; unchecked { _released[account] += payment; } Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 payment = releasable(token, account); require(payment != 0, "PaymentSplitter: account is not due payment"); // _erc20TotalReleased[token] is the sum of all values in _erc20Released[token]. // If "_erc20TotalReleased[token] += payment" does not overflow, then "_erc20Released[token][account] += payment" // cannot overflow. _erc20TotalReleased[token] += payment; unchecked { _erc20Released[token][account] += payment; } SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/draft-IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
{ "metadata": { "useLiteralContent": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_minimum","type":"uint256"},{"internalType":"address","name":"_builder","type":"address"},{"internalType":"address[]","name":"_shareholders","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_val","type":"bool"}],"name":"PresaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_val","type":"bool"}],"name":"SaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_val","type":"uint256"}],"name":"TotalSupplyChanged","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_PER_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_account","type":"address"}],"name":"agencyRelease","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"authorizedOperator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free","outputs":[{"internalType":"uint256","name":"","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amt","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":"_wallet","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":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amt","type":"uint256"}],"name":"preMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amt","type":"uint256"}],"name":"reserve","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":"payable","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":"payable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_val","type":"address"}],"name":"setAuthorizedOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_val","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_val","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_val","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberMinted","type":"uint256"},{"internalType":"uint256","name":"_numberToMint","type":"uint256"},{"internalType":"uint256","name":"_costPerMint","type":"uint256"}],"name":"subtotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052660ddb07829fc000601155611b5860125560006014806101000a81548160ff0219169083151502179055506000601460156101000a81548160ff0219169083151502179055503480156200005757600080fd5b50604051620061573803806200615783398181016040528101906200007d919062000bf2565b733cc6cdda760b79bafa08df41ecfa224f810dceb660008585858581818d8d8160029080519060200190620000b492919062000754565b508060039080519060200190620000cd92919062000754565b50620000de6200044860201b60201c565b600081905550505062000106620000fa6200044d60201b60201c565b6200045560201b60201c565b80518251146200014d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001449062000d91565b60405180910390fd5b600082511162000194576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018b9062000e03565b60405180910390fd5b60005b82518110156200020357620001ed838281518110620001bb57620001ba62000e25565b5b6020026020010151838381518110620001d957620001d862000e25565b5b60200260200101516200051b60201b60201c565b8080620001fa9062000e83565b91505062000197565b505050836010819055508273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505050505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200043a57801562000300576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620002c692919062000ee1565b600060405180830381600087803b158015620002e157600080fd5b505af1158015620002f6573d6000803e3d6000fd5b5050505062000439565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620003ba576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200038092919062000ee1565b600060405180830381600087803b1580156200039b57600080fd5b505af1158015620003b0573d6000803e3d6000fd5b5050505062000438565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b815260040162000403919062000f0e565b600060405180830381600087803b1580156200041e57600080fd5b505af115801562000433573d6000803e3d6000fd5b505050505b5b5b5050505050505050620011cc565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200058d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005849062000fa1565b60405180910390fd5b60008111620005d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ca9062001013565b60405180910390fd5b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000658576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200064f90620010ab565b60405180910390fd5b600d829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550806009546200070f9190620010cd565b6009819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac8282604051620007489291906200113b565b60405180910390a15050565b828054620007629062001197565b90600052602060002090601f016020900481019282620007865760008555620007d2565b82601f10620007a157805160ff1916838001178555620007d2565b82800160010185558215620007d2579182015b82811115620007d1578251825591602001919060010190620007b4565b5b509050620007e19190620007e5565b5090565b5b8082111562000800576000816000905550600101620007e6565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200086d8262000822565b810181811067ffffffffffffffff821117156200088f576200088e62000833565b5b80604052505050565b6000620008a462000804565b9050620008b2828262000862565b919050565b600067ffffffffffffffff821115620008d557620008d462000833565b5b620008e08262000822565b9050602081019050919050565b60005b838110156200090d578082015181840152602081019050620008f0565b838111156200091d576000848401525b50505050565b60006200093a6200093484620008b7565b62000898565b9050828152602081018484840111156200095957620009586200081d565b5b62000966848285620008ed565b509392505050565b600082601f83011262000986576200098562000818565b5b81516200099884826020860162000923565b91505092915050565b6000819050919050565b620009b681620009a1565b8114620009c257600080fd5b50565b600081519050620009d681620009ab565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a0982620009dc565b9050919050565b62000a1b81620009fc565b811462000a2757600080fd5b50565b60008151905062000a3b8162000a10565b92915050565b600067ffffffffffffffff82111562000a5f5762000a5e62000833565b5b602082029050602081019050919050565b600080fd5b600062000a8c62000a868462000a41565b62000898565b9050808382526020820190506020840283018581111562000ab25762000ab162000a70565b5b835b8181101562000adf578062000aca888262000a2a565b84526020840193505060208101905062000ab4565b5050509392505050565b600082601f83011262000b015762000b0062000818565b5b815162000b1384826020860162000a75565b91505092915050565b600067ffffffffffffffff82111562000b3a5762000b3962000833565b5b602082029050602081019050919050565b600062000b6262000b5c8462000b1c565b62000898565b9050808382526020820190506020840283018581111562000b885762000b8762000a70565b5b835b8181101562000bb5578062000ba08882620009c5565b84526020840193505060208101905062000b8a565b5050509392505050565b600082601f83011262000bd75762000bd662000818565b5b815162000be984826020860162000b4b565b91505092915050565b60008060008060008060c0878903121562000c125762000c116200080e565b5b600087015167ffffffffffffffff81111562000c335762000c3262000813565b5b62000c4189828a016200096e565b965050602087015167ffffffffffffffff81111562000c655762000c6462000813565b5b62000c7389828a016200096e565b955050604062000c8689828a01620009c5565b945050606062000c9989828a0162000a2a565b935050608087015167ffffffffffffffff81111562000cbd5762000cbc62000813565b5b62000ccb89828a0162000ae9565b92505060a087015167ffffffffffffffff81111562000cef5762000cee62000813565b5b62000cfd89828a0162000bbf565b9150509295509295509295565b600082825260208201905092915050565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b600062000d7960328362000d0a565b915062000d868262000d1b565b604082019050919050565b6000602082019050818103600083015262000dac8162000d6a565b9050919050565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b600062000deb601a8362000d0a565b915062000df88262000db3565b602082019050919050565b6000602082019050818103600083015262000e1e8162000ddc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000e9082620009a1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362000ec55762000ec462000e54565b5b600182019050919050565b62000edb81620009fc565b82525050565b600060408201905062000ef8600083018562000ed0565b62000f07602083018462000ed0565b9392505050565b600060208201905062000f25600083018462000ed0565b92915050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b600062000f89602c8362000d0a565b915062000f968262000f2b565b604082019050919050565b6000602082019050818103600083015262000fbc8162000f7a565b9050919050565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b600062000ffb601d8362000d0a565b9150620010088262000fc3565b602082019050919050565b600060208201905081810360008301526200102e8162000fec565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b600062001093602b8362000d0a565b9150620010a08262001035565b604082019050919050565b60006020820190508181036000830152620010c68162001084565b9050919050565b6000620010da82620009a1565b9150620010e783620009a1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200111f576200111e62000e54565b5b828201905092915050565b6200113581620009a1565b82525050565b600060408201905062001152600083018562000ed0565b6200116160208301846200112a565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620011b057607f821691505b602082108103620011c657620011c562001168565b5b50919050565b608051614f6f620011e86000396000611ee40152614f6f6000f3fe6080604052600436106102b25760003560e01c8063819b25ba11610175578063b88d4fde116100dc578063d79779b211610095578063df7787a41161006f578063df7787a414610b07578063e33b7de314610b32578063e985e9c514610b5d578063f2fde38b14610b9a576102f9565b8063d79779b214610a64578063dbf1b0a414610aa1578063dc33e68114610aca576102f9565b8063b88d4fde1461093f578063bce4d6ae1461095b578063c45ac05014610984578063c4e37095146109c1578063c87b56dd146109ea578063ce7c2ac214610a27576102f9565b80639852595c1161012e5780639852595c1461081a578063a0712d6814610857578063a22cb46514610873578063a3f8eace1461089c578063a7c13b7c146108d9578063ab59ce6814610916576102f9565b8063819b25ba146107175780638ad433ac146107405780638b83209b1461075c5780638da5cb5b1461079957806395d89b41146107c457806396ea6ebe146107ef576102f9565b8063406072a91161021957806355f804b3116101d257806355f804b3146106075780636352211e1461063057806368428a1b1461066d5780636c0360eb1461069857806370a08231146106c3578063715018a614610700576102f9565b8063406072a91461050657806341f434341461054357806342842e0e1461056e57806344a0d68a1461058a57806348b75044146105b357806353135ca0146105dc576102f9565b806318160ddd1161026b57806318160ddd14610415578063191655871461044057806323b872dd146104695780632e0367681461048557806332cb6b0c146104b05780633a98ef39146104db576102f9565b806301ffc9a7146102fe57806306fdde031461033b578063081812fc14610366578063095ea7b3146103a35780631370128e146103bf57806313faede6146103ea576102f9565b366102f9577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102e0610bc3565b346040516102ef92919061377c565b60405180910390a1005b600080fd5b34801561030a57600080fd5b5061032560048036038101906103209190613811565b610bcb565b6040516103329190613859565b60405180910390f35b34801561034757600080fd5b50610350610c5d565b60405161035d919061390d565b60405180910390f35b34801561037257600080fd5b5061038d6004803603810190610388919061395b565b610cef565b60405161039a9190613988565b60405180910390f35b6103bd60048036038101906103b891906139cf565b610d6e565b005b3480156103cb57600080fd5b506103d4610eb2565b6040516103e19190613a0f565b60405180910390f35b3480156103f657600080fd5b506103ff610eb8565b60405161040c9190613a0f565b60405180910390f35b34801561042157600080fd5b5061042a610ebe565b6040516104379190613a0f565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190613a68565b610ed5565b005b610483600480360381019061047e9190613a95565b610f26565b005b34801561049157600080fd5b5061049a610f75565b6040516104a79190613a0f565b60405180910390f35b3480156104bc57600080fd5b506104c5610f7a565b6040516104d29190613a0f565b60405180910390f35b3480156104e757600080fd5b506104f0610f80565b6040516104fd9190613a0f565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613b26565b610f8a565b60405161053a9190613a0f565b60405180910390f35b34801561054f57600080fd5b50610558611011565b6040516105659190613bc5565b60405180910390f35b61058860048036038101906105839190613a95565b611023565b005b34801561059657600080fd5b506105b160048036038101906105ac919061395b565b61115c565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190613b26565b61116e565b005b3480156105e857600080fd5b506105f16111c1565b6040516105fe9190613859565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190613c45565b6111d4565b005b34801561063c57600080fd5b506106576004803603810190610652919061395b565b6111f2565b6040516106649190613988565b60405180910390f35b34801561067957600080fd5b50610682611204565b60405161068f9190613859565b60405180910390f35b3480156106a457600080fd5b506106ad611215565b6040516106ba919061390d565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190613c92565b6112a3565b6040516106f79190613a0f565b60405180910390f35b34801561070c57600080fd5b5061071561135b565b005b34801561072357600080fd5b5061073e6004803603810190610739919061395b565b61136f565b005b61075a6004803603810190610755919061395b565b611420565b005b34801561076857600080fd5b50610783600480360381019061077e919061395b565b611649565b6040516107909190613988565b60405180910390f35b3480156107a557600080fd5b506107ae611691565b6040516107bb9190613988565b60405180910390f35b3480156107d057600080fd5b506107d96116bb565b6040516107e6919061390d565b60405180910390f35b3480156107fb57600080fd5b5061080461174d565b6040516108119190613988565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190613c92565b611773565b60405161084e9190613a0f565b60405180910390f35b610871600480360381019061086c919061395b565b6117bc565b005b34801561087f57600080fd5b5061089a60048036038101906108959190613ceb565b61193e565b005b3480156108a857600080fd5b506108c360048036038101906108be9190613c92565b611a49565b6040516108d09190613a0f565b60405180910390f35b3480156108e557600080fd5b5061090060048036038101906108fb9190613d2b565b611a7c565b60405161090d9190613a0f565b60405180910390f35b34801561092257600080fd5b5061093d60048036038101906109389190613c92565b611aad565b005b61095960048036038101906109549190613eae565b611af9565b005b34801561096757600080fd5b50610982600480360381019061097d9190613f31565b611c34565b005b34801561099057600080fd5b506109ab60048036038101906109a69190613b26565b611c90565b6040516109b89190613a0f565b60405180910390f35b3480156109cd57600080fd5b506109e860048036038101906109e39190613f31565b611d3f565b005b3480156109f657600080fd5b50610a116004803603810190610a0c919061395b565b611d9a565b604051610a1e919061390d565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190613c92565b611e38565b604051610a5b9190613a0f565b60405180910390f35b348015610a7057600080fd5b50610a8b6004803603810190610a869190613f5e565b611e81565b604051610a989190613a0f565b60405180910390f35b348015610aad57600080fd5b50610ac86004803603810190610ac39190613a68565b611eca565b005b348015610ad657600080fd5b50610af16004803603810190610aec9190613c92565b612029565b604051610afe9190613a0f565b60405180910390f35b348015610b1357600080fd5b50610b1c61203b565b604051610b299190613a0f565b60405180910390f35b348015610b3e57600080fd5b50610b47612040565b604051610b549190613a0f565b60405180910390f35b348015610b6957600080fd5b50610b846004803603810190610b7f9190613f8b565b61204a565b604051610b919190613859565b60405180910390f35b348015610ba657600080fd5b50610bc16004803603810190610bbc9190613c92565b6120de565b005b600033905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c2657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c565750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610c6c90613ffa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9890613ffa565b8015610ce55780601f10610cba57610100808354040283529160200191610ce5565b820191906000526020600020905b815481529060010190602001808311610cc857829003601f168201915b5050505050905090565b6000610cfa82612161565b610d30576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d79826111f2565b90508073ffffffffffffffffffffffffffffffffffffffff16610d9a6121c0565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd57610dc681610dc16121c0565b61204a565b610dfc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60125481565b60115481565b6000610ec86121c8565b6001546000540303905090565b600060105414610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f119061409d565b60405180910390fd5b610f23816121cd565b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f6457610f633361234c565b5b610f6f848484612449565b50505050565b600a81565b61271081565b6000600954905090565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611061576110603361234c565b5b611069610bc3565b73ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461114b576110c56121c0565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061110b575061110a846111056121c0565b61204a565b5b61114a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111419061412f565b60405180910390fd5b5b61115684848461276b565b50505050565b61116461278b565b8060118190555050565b6000601054146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa9061409d565b60405180910390fd5b6111bd8282612809565b5050565b601460159054906101000a900460ff1681565b6111dc61278b565b8181601391906111ed92919061367f565b505050565b60006111fd82612a1c565b9050919050565b60148054906101000a900460ff1681565b6013805461122290613ffa565b80601f016020809104026020016040519081016040528092919081815260200182805461124e90613ffa565b801561129b5780601f106112705761010080835404028352916020019161129b565b820191906000526020600020905b81548152906001019060200180831161127e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361130a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61136361278b565b61136d6000612ae8565b565b61137761278b565b8060125410156113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b39061419b565b60405180910390fd5b80601260008282546113ce91906141ea565b925050819055506113df3382612bae565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7611408610ebe565b6040516114159190613a0f565b60405180910390a150565b601460159054906101000a900460ff1661146f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114669061426a565b60405180910390fd5b600a8111156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa906142fc565b60405180910390fd5b6012548111156114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90614368565b60405180910390fd5b3461152061150533612d69565b836606c00a3912c00060115461151b91906141ea565b611a7c565b14611560576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611557906143d4565b60405180910390fd5b6000601254116115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c90614440565b60405180910390fd5b80601260008282546115b791906141ea565b925050819055506000601254036115fe576000601460156101000a81548160ff02191690831515021790555060016014806101000a81548160ff0219169083151502179055505b6116083382612dc0565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7611631610ebe565b60405161163e9190613a0f565b60405180910390a150565b6000600d828154811061165f5761165e614460565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116ca90613ffa565b80601f01602080910402602001604051908101604052809291908181526020018280546116f690613ffa565b80156117435780601f1061171857610100808354040283529160200191611743565b820191906000526020600020905b81548152906001019060200180831161172657829003601f168201915b5050505050905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60148054906101000a900460ff16611809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611800906144db565b60405180910390fd5b600a81111561184d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611844906142fc565b60405180910390fd5b61271081611859610ebe565b61186391906144fb565b11156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90614368565b60405180910390fd5b34816011546118b39190614551565b146118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea906143d4565b60405180910390fd5b6118fd3382612dc0565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7611926610ebe565b6040516119339190613a0f565b60405180910390a150565b806007600061194b6121c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119f86121c0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a3d9190613859565b60405180910390a35050565b600080611a54612040565b47611a5f91906144fb565b9050611a748382611a6f86611773565b612dde565b915050919050565b6000808411611a8b5781611a8e565b60005b8284611a9a9190614551565b611aa491906141ea565b90509392505050565b611ab561278b565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b3757611b363361234c565b5b611b3f610bc3565b73ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c2157611b9b6121c0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611be15750611be085611bdb6121c0565b61204a565b5b611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c179061412f565b60405180910390fd5b5b611c2d85858585612e4c565b5050505050565b611c3c61278b565b80601460156101000a81548160ff0219169083151502179055507f1050112436208e776d9a33d97ca1981ed83303d2a93ccbd8c54f7a774c00f81481604051611c859190613859565b60405180910390a150565b600080611c9c84611e81565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611cd59190613988565b602060405180830381865afa158015611cf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1691906145c0565b611d2091906144fb565b9050611d368382611d318787610f8a565b612dde565b91505092915050565b611d4761278b565b806014806101000a81548160ff0219169083151502179055507fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c60281604051611d8f9190613859565b60405180910390a150565b6060611da582612161565b611ddb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611de5612ebf565b90506000815103611e055760405180602001604052806000815250611e30565b80611e0f84612f51565b604051602001611e20929190614629565b6040516020818303038152906040525b915050919050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b808073ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1614611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f50906146bf565b60405180910390fd5b60004790506000601054905060008111611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90614751565b60405180910390fd5b60008211611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe2906147e3565b60405180910390fd5b600081831015611ffb5782611ffd565b815b9050806010600082825461201191906141ea565b925050819055506120228582612fa1565b5050505050565b600061203482612d69565b9050919050565b600a81565b6000600a54905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120e661278b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90614875565b60405180910390fd5b61215e81612ae8565b50565b60008161216c6121c8565b1115801561217b575060005482105b80156121b9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224690614907565b60405180910390fd5b600061225a82611a49565b90506000810361229f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229690614999565b60405180910390fd5b80600a60008282546122b191906144fb565b9250508190555080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061230f8282612fa1565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05682826040516123409291906149da565b60405180910390a15050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612446576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016123c3929190614a03565b602060405180830381865afa1580156123e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124049190614a41565b61244557806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161243c9190613988565b60405180910390fd5b5b50565b600061245482612a1c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124bb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806124c784613095565b915091506124dd81876124d86121c0565b6130bc565b612529576124f2866124ed6121c0565b61204a565b612528576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361258f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61259c8686866001613100565b80156125a757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061267585612651888887613106565b7c02000000000000000000000000000000000000000000000000000000001761312e565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036126fb57600060018501905060006004600083815260200190815260200160002054036126f95760005481146126f8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127638686866001613159565b505050505050565b61278683838360405180602001604052806000815250611af9565b505050565b612793610bc3565b73ffffffffffffffffffffffffffffffffffffffff166127b1611691565b73ffffffffffffffffffffffffffffffffffffffff1614612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe90614aba565b60405180910390fd5b565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161288b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288290614907565b60405180910390fd5b60006128978383611c90565b9050600081036128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d390614999565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461292b91906144fb565b9250508190555080600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506129c783838361315f565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8383604051612a0f92919061377c565b60405180910390a2505050565b60008082905080612a2b6121c8565b11612ab157600054811015612ab05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612aae575b60008103612aa4576004600083600190039350838152602001908152602001600020549050612a7a565b8092505050612ae3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905060008203612bee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bfb6000848385613100565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612c7283612c636000866000613106565b612c6c856131e5565b1761312e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612d1357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612cd8565b5060008203612d4e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612d646000848385613159565b505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612dda8282604051806020016040528060008152506131f5565b5050565b600081600954600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612e2f9190614551565b612e399190614b09565b612e4391906141ea565b90509392505050565b612e57848484610f26565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612eb957612e8284848484613292565b612eb8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060138054612ece90613ffa565b80601f0160208091040260200160405190810160405280929190818152602001828054612efa90613ffa565b8015612f475780601f10612f1c57610100808354040283529160200191612f47565b820191906000526020600020905b815481529060010190602001808311612f2a57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612f8c57600184039350600a81066030018453600a8104905080612f6a575b50828103602084039350808452505050919050565b80471015612fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdb90614b86565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161300a90614bd7565b60006040518083038185875af1925050503d8060008114613047576040519150601f19603f3d011682016040523d82523d6000602084013e61304c565b606091505b5050905080613090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308790614c5e565b60405180910390fd5b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861311d8686846133e2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6131e08363a9059cbb60e01b848460405160240161317e92919061377c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506133eb565b505050565b60006001821460e11b9050919050565b6131ff8383612bae565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461328d57600080549050600083820390505b61323f6000868380600101945086613292565b613275576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061322c57816000541461328a57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132b86121c0565b8786866040518563ffffffff1660e01b81526004016132da9493929190614cd3565b6020604051808303816000875af192505050801561331657506040513d601f19601f820116820180604052508101906133139190614d34565b60015b61338f573d8060008114613346576040519150601f19603f3d011682016040523d82523d6000602084013e61334b565b606091505b506000815103613387576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600061344d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166134b29092919063ffffffff16565b90506000815111156134ad578080602001905181019061346d9190614a41565b6134ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a390614dd3565b60405180910390fd5b5b505050565b60606134c184846000856134ca565b90509392505050565b60608247101561350f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350690614e65565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516135389190614eb6565b60006040518083038185875af1925050503d8060008114613575576040519150601f19603f3d011682016040523d82523d6000602084013e61357a565b606091505b509150915061358b87838387613597565b92505050949350505050565b606083156135f95760008351036135f1576135b18561360c565b6135f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e790614f19565b60405180910390fd5b5b829050613604565b613603838361362f565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156136425781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613676919061390d565b60405180910390fd5b82805461368b90613ffa565b90600052602060002090601f0160209004810192826136ad57600085556136f4565b82601f106136c657803560ff19168380011785556136f4565b828001600101855582156136f4579182015b828111156136f35782358255916020019190600101906136d8565b5b5090506137019190613705565b5090565b5b8082111561371e576000816000905550600101613706565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061374d82613722565b9050919050565b61375d81613742565b82525050565b6000819050919050565b61377681613763565b82525050565b60006040820190506137916000830185613754565b61379e602083018461376d565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137ee816137b9565b81146137f957600080fd5b50565b60008135905061380b816137e5565b92915050565b600060208284031215613827576138266137af565b5b6000613835848285016137fc565b91505092915050565b60008115159050919050565b6138538161383e565b82525050565b600060208201905061386e600083018461384a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138ae578082015181840152602081019050613893565b838111156138bd576000848401525b50505050565b6000601f19601f8301169050919050565b60006138df82613874565b6138e9818561387f565b93506138f9818560208601613890565b613902816138c3565b840191505092915050565b6000602082019050818103600083015261392781846138d4565b905092915050565b61393881613763565b811461394357600080fd5b50565b6000813590506139558161392f565b92915050565b600060208284031215613971576139706137af565b5b600061397f84828501613946565b91505092915050565b600060208201905061399d6000830184613754565b92915050565b6139ac81613742565b81146139b757600080fd5b50565b6000813590506139c9816139a3565b92915050565b600080604083850312156139e6576139e56137af565b5b60006139f4858286016139ba565b9250506020613a0585828601613946565b9150509250929050565b6000602082019050613a24600083018461376d565b92915050565b6000613a3582613722565b9050919050565b613a4581613a2a565b8114613a5057600080fd5b50565b600081359050613a6281613a3c565b92915050565b600060208284031215613a7e57613a7d6137af565b5b6000613a8c84828501613a53565b91505092915050565b600080600060608486031215613aae57613aad6137af565b5b6000613abc868287016139ba565b9350506020613acd868287016139ba565b9250506040613ade86828701613946565b9150509250925092565b6000613af382613742565b9050919050565b613b0381613ae8565b8114613b0e57600080fd5b50565b600081359050613b2081613afa565b92915050565b60008060408385031215613b3d57613b3c6137af565b5b6000613b4b85828601613b11565b9250506020613b5c858286016139ba565b9150509250929050565b6000819050919050565b6000613b8b613b86613b8184613722565b613b66565b613722565b9050919050565b6000613b9d82613b70565b9050919050565b6000613baf82613b92565b9050919050565b613bbf81613ba4565b82525050565b6000602082019050613bda6000830184613bb6565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613c0557613c04613be0565b5b8235905067ffffffffffffffff811115613c2257613c21613be5565b5b602083019150836001820283011115613c3e57613c3d613bea565b5b9250929050565b60008060208385031215613c5c57613c5b6137af565b5b600083013567ffffffffffffffff811115613c7a57613c796137b4565b5b613c8685828601613bef565b92509250509250929050565b600060208284031215613ca857613ca76137af565b5b6000613cb6848285016139ba565b91505092915050565b613cc88161383e565b8114613cd357600080fd5b50565b600081359050613ce581613cbf565b92915050565b60008060408385031215613d0257613d016137af565b5b6000613d10858286016139ba565b9250506020613d2185828601613cd6565b9150509250929050565b600080600060608486031215613d4457613d436137af565b5b6000613d5286828701613946565b9350506020613d6386828701613946565b9250506040613d7486828701613946565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613dbb826138c3565b810181811067ffffffffffffffff82111715613dda57613dd9613d83565b5b80604052505050565b6000613ded6137a5565b9050613df98282613db2565b919050565b600067ffffffffffffffff821115613e1957613e18613d83565b5b613e22826138c3565b9050602081019050919050565b82818337600083830152505050565b6000613e51613e4c84613dfe565b613de3565b905082815260208101848484011115613e6d57613e6c613d7e565b5b613e78848285613e2f565b509392505050565b600082601f830112613e9557613e94613be0565b5b8135613ea5848260208601613e3e565b91505092915050565b60008060008060808587031215613ec857613ec76137af565b5b6000613ed6878288016139ba565b9450506020613ee7878288016139ba565b9350506040613ef887828801613946565b925050606085013567ffffffffffffffff811115613f1957613f186137b4565b5b613f2587828801613e80565b91505092959194509250565b600060208284031215613f4757613f466137af565b5b6000613f5584828501613cd6565b91505092915050565b600060208284031215613f7457613f736137af565b5b6000613f8284828501613b11565b91505092915050565b60008060408385031215613fa257613fa16137af565b5b6000613fb0858286016139ba565b9250506020613fc1858286016139ba565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061401257607f821691505b60208210810361402557614024613fcb565b5b50919050565b7f5061796d656e744d696e696d756d3a204d696e696d756d207061796d656e742060008201527f6973206e6f74206d65742e000000000000000000000000000000000000000000602082015250565b6000614087602b8361387f565b91506140928261402b565b604082019050919050565b600060208201905081810360008301526140b68161407a565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061411960328361387f565b9150614124826140bd565b604082019050919050565b600060208201905081810360008301526141488161410c565b9050919050565b7f43616e6e6f74206578636565642066726565206d696e74206c696d69742e0000600082015250565b6000614185601e8361387f565b91506141908261414f565b602082019050919050565b600060208201905081810360008301526141b481614178565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141f582613763565b915061420083613763565b925082821015614213576142126141bb565b5b828203905092915050565b7f50726573616c65206973206e6f74206163746976652e00000000000000000000600082015250565b600061425460168361387f565b915061425f8261421e565b602082019050919050565b6000602082019050818103600083015261428381614247565b9050919050565b7f416d6f756e74206f6620746f6b656e732065786365656473207472616e73616360008201527f74696f6e206c696d69742e000000000000000000000000000000000000000000602082015250565b60006142e6602b8361387f565b91506142f18261428a565b604082019050919050565b60006020820190508181036000830152614315816142d9565b9050919050565b7f416d6f756e74206578636565647320737570706c792e00000000000000000000600082015250565b600061435260168361387f565b915061435d8261431c565b602082019050919050565b6000602082019050818103600083015261438181614345565b9050919050565b7f4554482073656e74206e6f7420657175616c20746f20636f73742e0000000000600082015250565b60006143be601b8361387f565b91506143c982614388565b602082019050919050565b600060208201905081810360008301526143ed816143b1565b9050919050565b7f50726573616c652068617320656e6465642e0000000000000000000000000000600082015250565b600061442a60128361387f565b9150614435826143f4565b602082019050919050565b600060208201905081810360008301526144598161441d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b60006144c560138361387f565b91506144d08261448f565b602082019050919050565b600060208201905081810360008301526144f4816144b8565b9050919050565b600061450682613763565b915061451183613763565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614546576145456141bb565b5b828201905092915050565b600061455c82613763565b915061456783613763565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145a05761459f6141bb565b5b828202905092915050565b6000815190506145ba8161392f565b92915050565b6000602082840312156145d6576145d56137af565b5b60006145e4848285016145ab565b91505092915050565b600081905092915050565b600061460382613874565b61460d81856145ed565b935061461d818560208601613890565b80840191505092915050565b600061463582856145f8565b915061464182846145f8565b91508190509392505050565b7f5061796d656e744d696e696d756d3a204163636f756e74206973206e6f74206160008201527f67656e63792e0000000000000000000000000000000000000000000000000000602082015250565b60006146a960268361387f565b91506146b48261464d565b604082019050919050565b600060208201905081810360008301526146d88161469c565b9050919050565b7f5061796d656e744d696e696d756d3a204d696e696d756d207061796d656e742060008201527f697320616c7265616479206d65742e0000000000000000000000000000000000602082015250565b600061473b602f8361387f565b9150614746826146df565b604082019050919050565b6000602082019050818103600083015261476a8161472e565b9050919050565b7f5061796d656e744d696e696d756d3a20436f6e747261637420686173206e6f2060008201527f66756e64732e0000000000000000000000000000000000000000000000000000602082015250565b60006147cd60268361387f565b91506147d882614771565b604082019050919050565b600060208201905081810360008301526147fc816147c0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061485f60268361387f565b915061486a82614803565b604082019050919050565b6000602082019050818103600083015261488e81614852565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b60006148f160268361387f565b91506148fc82614895565b604082019050919050565b60006020820190508181036000830152614920816148e4565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000614983602b8361387f565b915061498e82614927565b604082019050919050565b600060208201905081810360008301526149b281614976565b9050919050565b60006149c482613b92565b9050919050565b6149d4816149b9565b82525050565b60006040820190506149ef60008301856149cb565b6149fc602083018461376d565b9392505050565b6000604082019050614a186000830185613754565b614a256020830184613754565b9392505050565b600081519050614a3b81613cbf565b92915050565b600060208284031215614a5757614a566137af565b5b6000614a6584828501614a2c565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614aa460208361387f565b9150614aaf82614a6e565b602082019050919050565b60006020820190508181036000830152614ad381614a97565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b1482613763565b9150614b1f83613763565b925082614b2f57614b2e614ada565b5b828204905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614b70601d8361387f565b9150614b7b82614b3a565b602082019050919050565b60006020820190508181036000830152614b9f81614b63565b9050919050565b600081905092915050565b50565b6000614bc1600083614ba6565b9150614bcc82614bb1565b600082019050919050565b6000614be282614bb4565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614c48603a8361387f565b9150614c5382614bec565b604082019050919050565b60006020820190508181036000830152614c7781614c3b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614ca582614c7e565b614caf8185614c89565b9350614cbf818560208601613890565b614cc8816138c3565b840191505092915050565b6000608082019050614ce86000830187613754565b614cf56020830186613754565b614d02604083018561376d565b8181036060830152614d148184614c9a565b905095945050505050565b600081519050614d2e816137e5565b92915050565b600060208284031215614d4a57614d496137af565b5b6000614d5884828501614d1f565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614dbd602a8361387f565b9150614dc882614d61565b604082019050919050565b60006020820190508181036000830152614dec81614db0565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614e4f60268361387f565b9150614e5a82614df3565b604082019050919050565b60006020820190508181036000830152614e7e81614e42565b9050919050565b6000614e9082614c7e565b614e9a8185614ba6565b9350614eaa818560208601613890565b80840191505092915050565b6000614ec28284614e85565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614f03601d8361387f565b9150614f0e82614ecd565b602082019050919050565b60006020820190508181036000830152614f3281614ef6565b905091905056fea2646970667358221220f502de48248b6a7d91eac252c47e933000fe452c63bd5a90392be36a40b73e3964736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000053444835ec5800000000000000000000000000006b99d2b10f3cc0ce6b871a9f5f94e1ecd6222f470000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000076665657470697800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000446454554000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000921161952aeee4c7b5aa548831afa557d60a8dc800000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064
Deployed Bytecode
0x6080604052600436106102b25760003560e01c8063819b25ba11610175578063b88d4fde116100dc578063d79779b211610095578063df7787a41161006f578063df7787a414610b07578063e33b7de314610b32578063e985e9c514610b5d578063f2fde38b14610b9a576102f9565b8063d79779b214610a64578063dbf1b0a414610aa1578063dc33e68114610aca576102f9565b8063b88d4fde1461093f578063bce4d6ae1461095b578063c45ac05014610984578063c4e37095146109c1578063c87b56dd146109ea578063ce7c2ac214610a27576102f9565b80639852595c1161012e5780639852595c1461081a578063a0712d6814610857578063a22cb46514610873578063a3f8eace1461089c578063a7c13b7c146108d9578063ab59ce6814610916576102f9565b8063819b25ba146107175780638ad433ac146107405780638b83209b1461075c5780638da5cb5b1461079957806395d89b41146107c457806396ea6ebe146107ef576102f9565b8063406072a91161021957806355f804b3116101d257806355f804b3146106075780636352211e1461063057806368428a1b1461066d5780636c0360eb1461069857806370a08231146106c3578063715018a614610700576102f9565b8063406072a91461050657806341f434341461054357806342842e0e1461056e57806344a0d68a1461058a57806348b75044146105b357806353135ca0146105dc576102f9565b806318160ddd1161026b57806318160ddd14610415578063191655871461044057806323b872dd146104695780632e0367681461048557806332cb6b0c146104b05780633a98ef39146104db576102f9565b806301ffc9a7146102fe57806306fdde031461033b578063081812fc14610366578063095ea7b3146103a35780631370128e146103bf57806313faede6146103ea576102f9565b366102f9577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102e0610bc3565b346040516102ef92919061377c565b60405180910390a1005b600080fd5b34801561030a57600080fd5b5061032560048036038101906103209190613811565b610bcb565b6040516103329190613859565b60405180910390f35b34801561034757600080fd5b50610350610c5d565b60405161035d919061390d565b60405180910390f35b34801561037257600080fd5b5061038d6004803603810190610388919061395b565b610cef565b60405161039a9190613988565b60405180910390f35b6103bd60048036038101906103b891906139cf565b610d6e565b005b3480156103cb57600080fd5b506103d4610eb2565b6040516103e19190613a0f565b60405180910390f35b3480156103f657600080fd5b506103ff610eb8565b60405161040c9190613a0f565b60405180910390f35b34801561042157600080fd5b5061042a610ebe565b6040516104379190613a0f565b60405180910390f35b34801561044c57600080fd5b5061046760048036038101906104629190613a68565b610ed5565b005b610483600480360381019061047e9190613a95565b610f26565b005b34801561049157600080fd5b5061049a610f75565b6040516104a79190613a0f565b60405180910390f35b3480156104bc57600080fd5b506104c5610f7a565b6040516104d29190613a0f565b60405180910390f35b3480156104e757600080fd5b506104f0610f80565b6040516104fd9190613a0f565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190613b26565b610f8a565b60405161053a9190613a0f565b60405180910390f35b34801561054f57600080fd5b50610558611011565b6040516105659190613bc5565b60405180910390f35b61058860048036038101906105839190613a95565b611023565b005b34801561059657600080fd5b506105b160048036038101906105ac919061395b565b61115c565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190613b26565b61116e565b005b3480156105e857600080fd5b506105f16111c1565b6040516105fe9190613859565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190613c45565b6111d4565b005b34801561063c57600080fd5b506106576004803603810190610652919061395b565b6111f2565b6040516106649190613988565b60405180910390f35b34801561067957600080fd5b50610682611204565b60405161068f9190613859565b60405180910390f35b3480156106a457600080fd5b506106ad611215565b6040516106ba919061390d565b60405180910390f35b3480156106cf57600080fd5b506106ea60048036038101906106e59190613c92565b6112a3565b6040516106f79190613a0f565b60405180910390f35b34801561070c57600080fd5b5061071561135b565b005b34801561072357600080fd5b5061073e6004803603810190610739919061395b565b61136f565b005b61075a6004803603810190610755919061395b565b611420565b005b34801561076857600080fd5b50610783600480360381019061077e919061395b565b611649565b6040516107909190613988565b60405180910390f35b3480156107a557600080fd5b506107ae611691565b6040516107bb9190613988565b60405180910390f35b3480156107d057600080fd5b506107d96116bb565b6040516107e6919061390d565b60405180910390f35b3480156107fb57600080fd5b5061080461174d565b6040516108119190613988565b60405180910390f35b34801561082657600080fd5b50610841600480360381019061083c9190613c92565b611773565b60405161084e9190613a0f565b60405180910390f35b610871600480360381019061086c919061395b565b6117bc565b005b34801561087f57600080fd5b5061089a60048036038101906108959190613ceb565b61193e565b005b3480156108a857600080fd5b506108c360048036038101906108be9190613c92565b611a49565b6040516108d09190613a0f565b60405180910390f35b3480156108e557600080fd5b5061090060048036038101906108fb9190613d2b565b611a7c565b60405161090d9190613a0f565b60405180910390f35b34801561092257600080fd5b5061093d60048036038101906109389190613c92565b611aad565b005b61095960048036038101906109549190613eae565b611af9565b005b34801561096757600080fd5b50610982600480360381019061097d9190613f31565b611c34565b005b34801561099057600080fd5b506109ab60048036038101906109a69190613b26565b611c90565b6040516109b89190613a0f565b60405180910390f35b3480156109cd57600080fd5b506109e860048036038101906109e39190613f31565b611d3f565b005b3480156109f657600080fd5b50610a116004803603810190610a0c919061395b565b611d9a565b604051610a1e919061390d565b60405180910390f35b348015610a3357600080fd5b50610a4e6004803603810190610a499190613c92565b611e38565b604051610a5b9190613a0f565b60405180910390f35b348015610a7057600080fd5b50610a8b6004803603810190610a869190613f5e565b611e81565b604051610a989190613a0f565b60405180910390f35b348015610aad57600080fd5b50610ac86004803603810190610ac39190613a68565b611eca565b005b348015610ad657600080fd5b50610af16004803603810190610aec9190613c92565b612029565b604051610afe9190613a0f565b60405180910390f35b348015610b1357600080fd5b50610b1c61203b565b604051610b299190613a0f565b60405180910390f35b348015610b3e57600080fd5b50610b47612040565b604051610b549190613a0f565b60405180910390f35b348015610b6957600080fd5b50610b846004803603810190610b7f9190613f8b565b61204a565b604051610b919190613859565b60405180910390f35b348015610ba657600080fd5b50610bc16004803603810190610bbc9190613c92565b6120de565b005b600033905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c2657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c565750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610c6c90613ffa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9890613ffa565b8015610ce55780601f10610cba57610100808354040283529160200191610ce5565b820191906000526020600020905b815481529060010190602001808311610cc857829003601f168201915b5050505050905090565b6000610cfa82612161565b610d30576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d79826111f2565b90508073ffffffffffffffffffffffffffffffffffffffff16610d9a6121c0565b73ffffffffffffffffffffffffffffffffffffffff1614610dfd57610dc681610dc16121c0565b61204a565b610dfc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60125481565b60115481565b6000610ec86121c8565b6001546000540303905090565b600060105414610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f119061409d565b60405180910390fd5b610f23816121cd565b50565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f6457610f633361234c565b5b610f6f848484612449565b50505050565b600a81565b61271081565b6000600954905090565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611061576110603361234c565b5b611069610bc3565b73ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461114b576110c56121c0565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061110b575061110a846111056121c0565b61204a565b5b61114a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111419061412f565b60405180910390fd5b5b61115684848461276b565b50505050565b61116461278b565b8060118190555050565b6000601054146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa9061409d565b60405180910390fd5b6111bd8282612809565b5050565b601460159054906101000a900460ff1681565b6111dc61278b565b8181601391906111ed92919061367f565b505050565b60006111fd82612a1c565b9050919050565b60148054906101000a900460ff1681565b6013805461122290613ffa565b80601f016020809104026020016040519081016040528092919081815260200182805461124e90613ffa565b801561129b5780601f106112705761010080835404028352916020019161129b565b820191906000526020600020905b81548152906001019060200180831161127e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361130a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61136361278b565b61136d6000612ae8565b565b61137761278b565b8060125410156113bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b39061419b565b60405180910390fd5b80601260008282546113ce91906141ea565b925050819055506113df3382612bae565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7611408610ebe565b6040516114159190613a0f565b60405180910390a150565b601460159054906101000a900460ff1661146f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114669061426a565b60405180910390fd5b600a8111156114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa906142fc565b60405180910390fd5b6012548111156114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90614368565b60405180910390fd5b3461152061150533612d69565b836606c00a3912c00060115461151b91906141ea565b611a7c565b14611560576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611557906143d4565b60405180910390fd5b6000601254116115a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159c90614440565b60405180910390fd5b80601260008282546115b791906141ea565b925050819055506000601254036115fe576000601460156101000a81548160ff02191690831515021790555060016014806101000a81548160ff0219169083151502179055505b6116083382612dc0565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7611631610ebe565b60405161163e9190613a0f565b60405180910390a150565b6000600d828154811061165f5761165e614460565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546116ca90613ffa565b80601f01602080910402602001604051908101604052809291908181526020018280546116f690613ffa565b80156117435780601f1061171857610100808354040283529160200191611743565b820191906000526020600020905b81548152906001019060200180831161172657829003601f168201915b5050505050905090565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60148054906101000a900460ff16611809576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611800906144db565b60405180910390fd5b600a81111561184d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611844906142fc565b60405180910390fd5b61271081611859610ebe565b61186391906144fb565b11156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90614368565b60405180910390fd5b34816011546118b39190614551565b146118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea906143d4565b60405180910390fd5b6118fd3382612dc0565b7fc8b17f75f53401f272e9ee7fa431e81ba33779363238896180425a422420c8f7611926610ebe565b6040516119339190613a0f565b60405180910390a150565b806007600061194b6121c0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119f86121c0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a3d9190613859565b60405180910390a35050565b600080611a54612040565b47611a5f91906144fb565b9050611a748382611a6f86611773565b612dde565b915050919050565b6000808411611a8b5781611a8e565b60005b8284611a9a9190614551565b611aa491906141ea565b90509392505050565b611ab561278b565b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b3757611b363361234c565b5b611b3f610bc3565b73ffffffffffffffffffffffffffffffffffffffff16601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c2157611b9b6121c0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611be15750611be085611bdb6121c0565b61204a565b5b611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c179061412f565b60405180910390fd5b5b611c2d85858585612e4c565b5050505050565b611c3c61278b565b80601460156101000a81548160ff0219169083151502179055507f1050112436208e776d9a33d97ca1981ed83303d2a93ccbd8c54f7a774c00f81481604051611c859190613859565b60405180910390a150565b600080611c9c84611e81565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401611cd59190613988565b602060405180830381865afa158015611cf2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1691906145c0565b611d2091906144fb565b9050611d368382611d318787610f8a565b612dde565b91505092915050565b611d4761278b565b806014806101000a81548160ff0219169083151502179055507fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c60281604051611d8f9190613859565b60405180910390a150565b6060611da582612161565b611ddb576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611de5612ebf565b90506000815103611e055760405180602001604052806000815250611e30565b80611e0f84612f51565b604051602001611e20929190614629565b6040516020818303038152906040525b915050919050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b808073ffffffffffffffffffffffffffffffffffffffff167f0000000000000000000000006b99d2b10f3cc0ce6b871a9f5f94e1ecd6222f4773ffffffffffffffffffffffffffffffffffffffff1614611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f50906146bf565b60405180910390fd5b60004790506000601054905060008111611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90614751565b60405180910390fd5b60008211611feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe2906147e3565b60405180910390fd5b600081831015611ffb5782611ffd565b815b9050806010600082825461201191906141ea565b925050819055506120228582612fa1565b5050505050565b600061203482612d69565b9050919050565b600a81565b6000600a54905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120e661278b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612155576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214c90614875565b60405180910390fd5b61215e81612ae8565b50565b60008161216c6121c8565b1115801561217b575060005482105b80156121b9575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161224f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224690614907565b60405180910390fd5b600061225a82611a49565b90506000810361229f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229690614999565b60405180910390fd5b80600a60008282546122b191906144fb565b9250508190555080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061230f8282612fa1565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05682826040516123409291906149da565b60405180910390a15050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115612446576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016123c3929190614a03565b602060405180830381865afa1580156123e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124049190614a41565b61244557806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161243c9190613988565b60405180910390fd5b5b50565b600061245482612a1c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146124bb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806124c784613095565b915091506124dd81876124d86121c0565b6130bc565b612529576124f2866124ed6121c0565b61204a565b612528576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361258f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61259c8686866001613100565b80156125a757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061267585612651888887613106565b7c02000000000000000000000000000000000000000000000000000000001761312e565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036126fb57600060018501905060006004600083815260200190815260200160002054036126f95760005481146126f8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127638686866001613159565b505050505050565b61278683838360405180602001604052806000815250611af9565b505050565b612793610bc3565b73ffffffffffffffffffffffffffffffffffffffff166127b1611691565b73ffffffffffffffffffffffffffffffffffffffff1614612807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fe90614aba565b60405180910390fd5b565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161288b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288290614907565b60405180910390fd5b60006128978383611c90565b9050600081036128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d390614999565b60405180910390fd5b80600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461292b91906144fb565b9250508190555080600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506129c783838361315f565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a8383604051612a0f92919061377c565b60405180910390a2505050565b60008082905080612a2b6121c8565b11612ab157600054811015612ab05760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612aae575b60008103612aa4576004600083600190039350838152602001908152602001600020549050612a7a565b8092505050612ae3565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905060008203612bee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bfb6000848385613100565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612c7283612c636000866000613106565b612c6c856131e5565b1761312e565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612d1357808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612cd8565b5060008203612d4e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612d646000848385613159565b505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b612dda8282604051806020016040528060008152506131f5565b5050565b600081600954600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205485612e2f9190614551565b612e399190614b09565b612e4391906141ea565b90509392505050565b612e57848484610f26565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612eb957612e8284848484613292565b612eb8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060138054612ece90613ffa565b80601f0160208091040260200160405190810160405280929190818152602001828054612efa90613ffa565b8015612f475780601f10612f1c57610100808354040283529160200191612f47565b820191906000526020600020905b815481529060010190602001808311612f2a57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115612f8c57600184039350600a81066030018453600a8104905080612f6a575b50828103602084039350808452505050919050565b80471015612fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fdb90614b86565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161300a90614bd7565b60006040518083038185875af1925050503d8060008114613047576040519150601f19603f3d011682016040523d82523d6000602084013e61304c565b606091505b5050905080613090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308790614c5e565b60405180910390fd5b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861311d8686846133e2565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6131e08363a9059cbb60e01b848460405160240161317e92919061377c565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506133eb565b505050565b60006001821460e11b9050919050565b6131ff8383612bae565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461328d57600080549050600083820390505b61323f6000868380600101945086613292565b613275576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061322c57816000541461328a57600080fd5b50505b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132b86121c0565b8786866040518563ffffffff1660e01b81526004016132da9493929190614cd3565b6020604051808303816000875af192505050801561331657506040513d601f19601f820116820180604052508101906133139190614d34565b60015b61338f573d8060008114613346576040519150601f19603f3d011682016040523d82523d6000602084013e61334b565b606091505b506000815103613387576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60009392505050565b600061344d826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166134b29092919063ffffffff16565b90506000815111156134ad578080602001905181019061346d9190614a41565b6134ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134a390614dd3565b60405180910390fd5b5b505050565b60606134c184846000856134ca565b90509392505050565b60608247101561350f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350690614e65565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516135389190614eb6565b60006040518083038185875af1925050503d8060008114613575576040519150601f19603f3d011682016040523d82523d6000602084013e61357a565b606091505b509150915061358b87838387613597565b92505050949350505050565b606083156135f95760008351036135f1576135b18561360c565b6135f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135e790614f19565b60405180910390fd5b5b829050613604565b613603838361362f565b5b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000825111156136425781518083602001fd5b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613676919061390d565b60405180910390fd5b82805461368b90613ffa565b90600052602060002090601f0160209004810192826136ad57600085556136f4565b82601f106136c657803560ff19168380011785556136f4565b828001600101855582156136f4579182015b828111156136f35782358255916020019190600101906136d8565b5b5090506137019190613705565b5090565b5b8082111561371e576000816000905550600101613706565b5090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061374d82613722565b9050919050565b61375d81613742565b82525050565b6000819050919050565b61377681613763565b82525050565b60006040820190506137916000830185613754565b61379e602083018461376d565b9392505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137ee816137b9565b81146137f957600080fd5b50565b60008135905061380b816137e5565b92915050565b600060208284031215613827576138266137af565b5b6000613835848285016137fc565b91505092915050565b60008115159050919050565b6138538161383e565b82525050565b600060208201905061386e600083018461384a565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138ae578082015181840152602081019050613893565b838111156138bd576000848401525b50505050565b6000601f19601f8301169050919050565b60006138df82613874565b6138e9818561387f565b93506138f9818560208601613890565b613902816138c3565b840191505092915050565b6000602082019050818103600083015261392781846138d4565b905092915050565b61393881613763565b811461394357600080fd5b50565b6000813590506139558161392f565b92915050565b600060208284031215613971576139706137af565b5b600061397f84828501613946565b91505092915050565b600060208201905061399d6000830184613754565b92915050565b6139ac81613742565b81146139b757600080fd5b50565b6000813590506139c9816139a3565b92915050565b600080604083850312156139e6576139e56137af565b5b60006139f4858286016139ba565b9250506020613a0585828601613946565b9150509250929050565b6000602082019050613a24600083018461376d565b92915050565b6000613a3582613722565b9050919050565b613a4581613a2a565b8114613a5057600080fd5b50565b600081359050613a6281613a3c565b92915050565b600060208284031215613a7e57613a7d6137af565b5b6000613a8c84828501613a53565b91505092915050565b600080600060608486031215613aae57613aad6137af565b5b6000613abc868287016139ba565b9350506020613acd868287016139ba565b9250506040613ade86828701613946565b9150509250925092565b6000613af382613742565b9050919050565b613b0381613ae8565b8114613b0e57600080fd5b50565b600081359050613b2081613afa565b92915050565b60008060408385031215613b3d57613b3c6137af565b5b6000613b4b85828601613b11565b9250506020613b5c858286016139ba565b9150509250929050565b6000819050919050565b6000613b8b613b86613b8184613722565b613b66565b613722565b9050919050565b6000613b9d82613b70565b9050919050565b6000613baf82613b92565b9050919050565b613bbf81613ba4565b82525050565b6000602082019050613bda6000830184613bb6565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613c0557613c04613be0565b5b8235905067ffffffffffffffff811115613c2257613c21613be5565b5b602083019150836001820283011115613c3e57613c3d613bea565b5b9250929050565b60008060208385031215613c5c57613c5b6137af565b5b600083013567ffffffffffffffff811115613c7a57613c796137b4565b5b613c8685828601613bef565b92509250509250929050565b600060208284031215613ca857613ca76137af565b5b6000613cb6848285016139ba565b91505092915050565b613cc88161383e565b8114613cd357600080fd5b50565b600081359050613ce581613cbf565b92915050565b60008060408385031215613d0257613d016137af565b5b6000613d10858286016139ba565b9250506020613d2185828601613cd6565b9150509250929050565b600080600060608486031215613d4457613d436137af565b5b6000613d5286828701613946565b9350506020613d6386828701613946565b9250506040613d7486828701613946565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613dbb826138c3565b810181811067ffffffffffffffff82111715613dda57613dd9613d83565b5b80604052505050565b6000613ded6137a5565b9050613df98282613db2565b919050565b600067ffffffffffffffff821115613e1957613e18613d83565b5b613e22826138c3565b9050602081019050919050565b82818337600083830152505050565b6000613e51613e4c84613dfe565b613de3565b905082815260208101848484011115613e6d57613e6c613d7e565b5b613e78848285613e2f565b509392505050565b600082601f830112613e9557613e94613be0565b5b8135613ea5848260208601613e3e565b91505092915050565b60008060008060808587031215613ec857613ec76137af565b5b6000613ed6878288016139ba565b9450506020613ee7878288016139ba565b9350506040613ef887828801613946565b925050606085013567ffffffffffffffff811115613f1957613f186137b4565b5b613f2587828801613e80565b91505092959194509250565b600060208284031215613f4757613f466137af565b5b6000613f5584828501613cd6565b91505092915050565b600060208284031215613f7457613f736137af565b5b6000613f8284828501613b11565b91505092915050565b60008060408385031215613fa257613fa16137af565b5b6000613fb0858286016139ba565b9250506020613fc1858286016139ba565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061401257607f821691505b60208210810361402557614024613fcb565b5b50919050565b7f5061796d656e744d696e696d756d3a204d696e696d756d207061796d656e742060008201527f6973206e6f74206d65742e000000000000000000000000000000000000000000602082015250565b6000614087602b8361387f565b91506140928261402b565b604082019050919050565b600060208201905081810360008301526140b68161407a565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b600061411960328361387f565b9150614124826140bd565b604082019050919050565b600060208201905081810360008301526141488161410c565b9050919050565b7f43616e6e6f74206578636565642066726565206d696e74206c696d69742e0000600082015250565b6000614185601e8361387f565b91506141908261414f565b602082019050919050565b600060208201905081810360008301526141b481614178565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141f582613763565b915061420083613763565b925082821015614213576142126141bb565b5b828203905092915050565b7f50726573616c65206973206e6f74206163746976652e00000000000000000000600082015250565b600061425460168361387f565b915061425f8261421e565b602082019050919050565b6000602082019050818103600083015261428381614247565b9050919050565b7f416d6f756e74206f6620746f6b656e732065786365656473207472616e73616360008201527f74696f6e206c696d69742e000000000000000000000000000000000000000000602082015250565b60006142e6602b8361387f565b91506142f18261428a565b604082019050919050565b60006020820190508181036000830152614315816142d9565b9050919050565b7f416d6f756e74206578636565647320737570706c792e00000000000000000000600082015250565b600061435260168361387f565b915061435d8261431c565b602082019050919050565b6000602082019050818103600083015261438181614345565b9050919050565b7f4554482073656e74206e6f7420657175616c20746f20636f73742e0000000000600082015250565b60006143be601b8361387f565b91506143c982614388565b602082019050919050565b600060208201905081810360008301526143ed816143b1565b9050919050565b7f50726573616c652068617320656e6465642e0000000000000000000000000000600082015250565b600061442a60128361387f565b9150614435826143f4565b602082019050919050565b600060208201905081810360008301526144598161441d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b60006144c560138361387f565b91506144d08261448f565b602082019050919050565b600060208201905081810360008301526144f4816144b8565b9050919050565b600061450682613763565b915061451183613763565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614546576145456141bb565b5b828201905092915050565b600061455c82613763565b915061456783613763565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156145a05761459f6141bb565b5b828202905092915050565b6000815190506145ba8161392f565b92915050565b6000602082840312156145d6576145d56137af565b5b60006145e4848285016145ab565b91505092915050565b600081905092915050565b600061460382613874565b61460d81856145ed565b935061461d818560208601613890565b80840191505092915050565b600061463582856145f8565b915061464182846145f8565b91508190509392505050565b7f5061796d656e744d696e696d756d3a204163636f756e74206973206e6f74206160008201527f67656e63792e0000000000000000000000000000000000000000000000000000602082015250565b60006146a960268361387f565b91506146b48261464d565b604082019050919050565b600060208201905081810360008301526146d88161469c565b9050919050565b7f5061796d656e744d696e696d756d3a204d696e696d756d207061796d656e742060008201527f697320616c7265616479206d65742e0000000000000000000000000000000000602082015250565b600061473b602f8361387f565b9150614746826146df565b604082019050919050565b6000602082019050818103600083015261476a8161472e565b9050919050565b7f5061796d656e744d696e696d756d3a20436f6e747261637420686173206e6f2060008201527f66756e64732e0000000000000000000000000000000000000000000000000000602082015250565b60006147cd60268361387f565b91506147d882614771565b604082019050919050565b600060208201905081810360008301526147fc816147c0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061485f60268361387f565b915061486a82614803565b604082019050919050565b6000602082019050818103600083015261488e81614852565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b60006148f160268361387f565b91506148fc82614895565b604082019050919050565b60006020820190508181036000830152614920816148e4565b9050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b6000614983602b8361387f565b915061498e82614927565b604082019050919050565b600060208201905081810360008301526149b281614976565b9050919050565b60006149c482613b92565b9050919050565b6149d4816149b9565b82525050565b60006040820190506149ef60008301856149cb565b6149fc602083018461376d565b9392505050565b6000604082019050614a186000830185613754565b614a256020830184613754565b9392505050565b600081519050614a3b81613cbf565b92915050565b600060208284031215614a5757614a566137af565b5b6000614a6584828501614a2c565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614aa460208361387f565b9150614aaf82614a6e565b602082019050919050565b60006020820190508181036000830152614ad381614a97565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614b1482613763565b9150614b1f83613763565b925082614b2f57614b2e614ada565b5b828204905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000614b70601d8361387f565b9150614b7b82614b3a565b602082019050919050565b60006020820190508181036000830152614b9f81614b63565b9050919050565b600081905092915050565b50565b6000614bc1600083614ba6565b9150614bcc82614bb1565b600082019050919050565b6000614be282614bb4565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000614c48603a8361387f565b9150614c5382614bec565b604082019050919050565b60006020820190508181036000830152614c7781614c3b565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614ca582614c7e565b614caf8185614c89565b9350614cbf818560208601613890565b614cc8816138c3565b840191505092915050565b6000608082019050614ce86000830187613754565b614cf56020830186613754565b614d02604083018561376d565b8181036060830152614d148184614c9a565b905095945050505050565b600081519050614d2e816137e5565b92915050565b600060208284031215614d4a57614d496137af565b5b6000614d5884828501614d1f565b91505092915050565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b6000614dbd602a8361387f565b9150614dc882614d61565b604082019050919050565b60006020820190508181036000830152614dec81614db0565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b6000614e4f60268361387f565b9150614e5a82614df3565b604082019050919050565b60006020820190508181036000830152614e7e81614e42565b9050919050565b6000614e9082614c7e565b614e9a8185614ba6565b9350614eaa818560208601613890565b80840191505092915050565b6000614ec28284614e85565b915081905092915050565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b6000614f03601d8361387f565b9150614f0e82614ecd565b602082019050919050565b60006020820190508181036000830152614f3281614ef6565b905091905056fea2646970667358221220f502de48248b6a7d91eac252c47e933000fe452c63bd5a90392be36a40b73e3964736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000053444835ec5800000000000000000000000000006b99d2b10f3cc0ce6b871a9f5f94e1ecd6222f470000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000076665657470697800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000446454554000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000921161952aeee4c7b5aa548831afa557d60a8dc800000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064
-----Decoded View---------------
Arg [0] : _name (string): feetpix
Arg [1] : _symbol (string): FEET
Arg [2] : _minimum (uint256): 6000000000000000000
Arg [3] : _builder (address): 0x6B99D2B10f3Cc0CE6b871A9F5f94e1ECD6222f47
Arg [4] : _shareholders (address[]): 0x921161952AeeE4C7b5Aa548831AFa557d60a8DC8
Arg [5] : _shares (uint256[]): 100
-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 00000000000000000000000000000000000000000000000053444835ec580000
Arg [3] : 0000000000000000000000006b99d2b10f3cc0ce6b871a9f5f94e1ecd6222f47
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 6665657470697800000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 4645455400000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [11] : 000000000000000000000000921161952aeee4c7b5aa548831afa557d60a8dc8
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000064
Deployed Bytecode Sourcemap
635:5948:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3369:40:3;3385:12;:10;:12::i;:::-;3399:9;3369:40;;;;;;;:::i;:::-;;;;;;;;635:5948:0;;;;;9155:630:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;973:26:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;917:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5894:317:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1486:118:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5323:163:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1140:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;846:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3494:89:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4586:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;737:142:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5653:368:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3174:72;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1668:131:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1275:33:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3321:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11391:150:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1218:30:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1021:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:2;;;;;;;;;;;;;:::i;:::-;;3759:208:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4100:637;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4805:98:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1201:85:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10208:102:9;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1068:33:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4316:107:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4874:402:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4988:222:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2316:203:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3540:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6188:393;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2991:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5364:257:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2805:113:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10411:313:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4119:103:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3916:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;946:476:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2620:111:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;755:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3672:93:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162:9;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;640:96:8;693:7;719:10;712:17;;640:96;:::o;9155:630:9:-;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;10039:98::-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;973:26:0:-;;;;:::o;917:34::-;;;;:::o;5894:317:9:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;1486:118:1:-;785:1;766:15;;:20;758:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1577:22:::1;1591:7;1577:13;:22::i;:::-;1486:118:::0;:::o;5323:163:0:-;5432:4;2062:10:12;2054:18;;:4;:18;;;2050:81;;2088:32;2109:10;2088:20;:32::i;:::-;2050:81;5444:37:0::1;5463:4;5469:2;5473:7;5444:18;:37::i;:::-;5323:163:::0;;;;:::o;1140:46::-;1184:2;1140:46;:::o;846:42::-;883:5;846:42;:::o;3494:89:3:-;3538:7;3564:12;;3557:19;;3494:89;:::o;4586:133::-;4656:7;4682:14;:21;4697:5;4682:21;;;;;;;;;;;;;;;:30;4704:7;4682:30;;;;;;;;;;;;;;;;4675:37;;4586:133;;;;:::o;737:142:12:-;836:42;737:142;:::o;5653:368:0:-;5766:4;2062:10:12;2054:18;;:4;:18;;;2050:81;;2088:32;2109:10;2088:20;:32::i;:::-;2050:81;5804:12:0::1;:10;:12::i;:::-;5782:34;;:18;;;;;;;;;;;:34;;;5778:192;;5842:19;:17;:19::i;:::-;5834:27;;:4;:27;;;:74;;;;5865:43;5882:4;5888:19;:17;:19::i;:::-;5865:16;:43::i;:::-;5834:74;5826:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;5778:192;5975:41;5998:4;6004:2;6008:7;5975:22;:41::i;:::-;5653:368:::0;;;;:::o;3174:72::-;1094:13:2;:11;:13::i;:::-;3237:4:0::1;3230;:11;;;;3174:72:::0;:::o;1668:131:1:-;785:1;766:15;;:20;758:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;1765:29:::1;1779:5;1786:7;1765:13;:29::i;:::-;1668:131:::0;;:::o;1275:33:0:-;;;;;;;;;;;;;:::o;3321:86::-;1094:13:2;:11;:13::i;:::-;3398:4:0::1;;3388:7;:14;;;;;;;:::i;:::-;;3321:86:::0;;:::o;11391:150:9:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;1218:30:0:-;;;;;;;;;;;;:::o;1021:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7045:230:9:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1831:101:2:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;3759:208:0:-;1094:13:2;:11;:13::i;:::-;3831:4:0::1;3823;;:12;;3815:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;3884:4;3876;;:12;;;;;;;:::i;:::-;;;;;;;;3894:23;3900:10;3912:4;3894:5;:23::i;:::-;3929:33;3948:13;:11;:13::i;:::-;3929:33;;;;;;:::i;:::-;;;;;;;;3759:208:::0;:::o;4100:637::-;4162:13;;;;;;;;;;;4154:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;1184:2;4216:4;:25;;4208:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;4311:4;;4303;:12;;4295:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;4422:9;4356:62;4365:25;4379:10;4365:13;:25::i;:::-;4392:4;4405:12;4398:4;;:19;;;;:::i;:::-;4356:8;:62::i;:::-;:75;4348:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;4484:1;4477:4;;:8;4469:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;4527:4;4519;;:12;;;;;;;:::i;:::-;;;;;;;;4602:1;4594:4;;:9;4590:60;;4623:5;4607:13;;:21;;;;;;;;;;;;;;;;;;4643:4;4630:10;;:17;;;;;;;;;;;;;;;;;;4590:60;4660:27;4670:10;4682:4;4660:9;:27::i;:::-;4699:33;4718:13;:11;:13::i;:::-;4699:33;;;;;;:::i;:::-;;;;;;;;4100:637;:::o;4805:98:3:-;4856:7;4882;4890:5;4882:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4875:21;;4805:98;;;:::o;1201:85:2:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;10208:102:9:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;1068:33:0:-;;;;;;;;;;;;;:::o;4316:107:3:-;4372:7;4398:9;:18;4408:7;4398:18;;;;;;;;;;;;;;;;4391:25;;4316:107;;;:::o;4874:402:0:-;4933:10;;;;;;;;;;4925:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;792:2;4981:4;:18;;4973:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;883:5;5077:4;5061:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:34;;5053:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;5151:9;5143:4;5136;;:11;;;;:::i;:::-;:24;5128:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5199:27;5209:10;5221:4;5199:9;:27::i;:::-;5238:33;5257:13;:11;:13::i;:::-;5238:33;;;;;;:::i;:::-;;;;;;;;4874:402;:::o;16901:231:9:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;4988:222:3:-;5046:7;5065:21;5113:15;:13;:15::i;:::-;5089:21;:39;;;;:::i;:::-;5065:63;;5145:58;5161:7;5170:13;5185:17;5194:7;5185:8;:17::i;:::-;5145:15;:58::i;:::-;5138:65;;;4988:222;;;:::o;2316:203:0:-;2423:7;2493:1;2477:13;:17;:36;;2501:12;2477:36;;;2497:1;2477:36;2461:12;2445:13;:28;;;;:::i;:::-;:69;;;;:::i;:::-;2438:76;;2316:203;;;;;:::o;3540:100::-;1094:13:2;:11;:13::i;:::-;3631:4:0::1;3610:18;;:25;;;;;;;;;;;;;;;;;;3540:100:::0;:::o;6188:393::-;6320:4;2062:10:12;2054:18;;:4;:18;;;2050:81;;2088:32;2109:10;2088:20;:32::i;:::-;2050:81;6358:12:0::1;:10;:12::i;:::-;6336:34;;:18;;;;;;;;;;;:34;;;6332:192;;6396:19;:17;:19::i;:::-;6388:27;;:4;:27;;;:74;;;;6419:43;6436:4;6442:19;:17;:19::i;:::-;6419:16;:43::i;:::-;6388:74;6380:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;6332:192;6529:47;6552:4;6558:2;6562:7;6571:4;6529:22;:47::i;:::-;6188:393:::0;;;;;:::o;2991:122::-;1094:13:2;:11;:13::i;:::-;3068:4:0::1;3052:13;;:20;;;;;;;;;;;;;;;;;;3083:25;3103:4;3083:25;;;;;;:::i;:::-;;;;;;;;2991:122:::0;:::o;5364:257:3:-;5436:7;5455:21;5512:20;5526:5;5512:13;:20::i;:::-;5479:5;:15;;;5503:4;5479:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;5455:77;;5549:65;5565:7;5574:13;5589:24;5598:5;5605:7;5589:8;:24::i;:::-;5549:15;:65::i;:::-;5542:72;;;5364:257;;;;:::o;2805:113:0:-;1094:13:2;:11;:13::i;:::-;2876:4:0::1;2863:10;::::0;:17:::1;;;;;;;;;;;;;;;;;;2891:22;2908:4;2891:22;;;;;;:::i;:::-;;;;;;;;2805:113:::0;:::o;10411:313:9:-;10484:13;10514:16;10522:7;10514;:16::i;:::-;10509:59;;10539:29;;;;;;;;;;;;;;10509:59;10579:21;10603:10;:8;:10::i;:::-;10579:34;;10655:1;10636:7;10630:21;:26;:87;;;;;;;;;;;;;;;;;10683:7;10692:18;10702:7;10692:9;:18::i;:::-;10666:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10630:87;10623:94;;;10411:313;;;:::o;4119:103:3:-;4173:7;4199;:16;4207:7;4199:16;;;;;;;;;;;;;;;;4192:23;;4119:103;;;:::o;3916:117::-;3974:7;4000:19;:26;4020:5;4000:26;;;;;;;;;;;;;;;;3993:33;;3916:117;;;:::o;946:476:1:-;1021:8;609;599:18;;:6;:18;;;591:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1037:16:::1;1056:21;1037:40;;1083:18;1104:15;;1083:36;;1146:1;1133:10;:14;1125:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1225:1;1214:8;:12;1205:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1276:16;1307:10;1295:8;:22;;:46;;1333:8;1295:46;;;1320:10;1295:46;1276:65;;1366:8;1347:15;;:27;;;;;;;:::i;:::-;;;;;;;;1380:37;1398:8;1408;1380:17;:37::i;:::-;1031:391;;;946:476:::0;;:::o;2620:111:0:-;2682:7;2704:22;2718:7;2704:13;:22::i;:::-;2697:29;;2620:111;;;:::o;755:39::-;792:2;755:39;:::o;3672:93:3:-;3718:7;3744:14;;3737:21;;3672:93;:::o;17282:162:9:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2081:198:2:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;::::0;2161:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;17693:277:9:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;5426:90::-;5482:7;5426:90;:::o;5815:655:3:-;5909:1;5890:7;:16;5898:7;5890:16;;;;;;;;;;;;;;;;:20;5882:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5964:15;5982:19;5993:7;5982:10;:19::i;:::-;5964:37;;6031:1;6020:7;:12;6012:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6289:7;6271:14;;:25;;;;;;;:::i;:::-;;;;;;;;6352:7;6330:9;:18;6340:7;6330:18;;;;;;;;;;;;;;;;:29;;;;;;;;;;;6380:35;6398:7;6407;6380:17;:35::i;:::-;6430:33;6446:7;6455;6430:33;;;;;;;:::i;:::-;;;;;;;;5872:598;5815:655;:::o;2281:412:12:-;2518:1;836:42;2470:45;;;:49;2466:221;;;836:42;2540;;;2591:4;2598:8;2540:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2535:142;;2653:8;2634:28;;;;;;;;;;;:::i;:::-;;;;;;;;2535:142;2466:221;2281:412;:::o;19903:2764:9:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;22758:187::-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;1359:130:2:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;6731:775:3:-;6831:1;6812:7;:16;6820:7;6812:16;;;;;;;;;;;;;;;;:20;6804:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;6886:15;6904:26;6915:5;6922:7;6904:10;:26::i;:::-;6886:44;;6960:1;6949:7;:12;6941:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7289:7;7259:19;:26;7279:5;7259:26;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;7364:7;7330:14;:21;7345:5;7330:21;;;;;;;;;;;;;;;:30;7352:7;7330:30;;;;;;;;;;;;;;;;:41;;;;;;;;;;;7392:47;7415:5;7422:7;7431;7392:22;:47::i;:::-;7475:5;7454:45;;;7482:7;7491;7454:45;;;;;;;:::i;:::-;;;;;;;;6794:712;6731:775;;:::o;12515:1249:9:-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;13510:111;13527:1;13517:6;:11;13510:111;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;2433:187:2:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;27091:2902:9:-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;7352:176::-;7413:7;1360:13;1495:2;7440:18;:25;7459:5;7440:25;;;;;;;;;;;;;;;;:50;;7439:82;7432:89;;7352:176;;;:::o;33423:110::-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;7678:242:3:-;7820:7;7898:15;7883:12;;7863:7;:16;7871:7;7863:16;;;;;;;;;;;;;;;;7847:13;:32;;;;:::i;:::-;7846:49;;;;:::i;:::-;:67;;;;:::i;:::-;7839:74;;7678:242;;;;;:::o;23526:396:9:-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;1944:100:0:-;2004:13;2032:7;2025:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1944:100;:::o;39637:1708:9:-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40716:1;40690:419;;;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41009:4;41005:13;40997:21;;41080:4;40690:419;41070:25;40690:419;40694:21;41146:3;41141;41137:13;41259:4;41254:3;41250:14;41243:21;;41322:6;41317:3;41310:19;39740:1599;;;39637:1708;;;:::o;2412:312:7:-;2526:6;2501:21;:31;;2493:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2578:12;2596:9;:14;;2618:6;2596:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:52;;;2647:7;2639:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2483:241;2412:312;;:::o;18828:474:9:-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;763:205:6:-;875:86;895:5;925:23;;;950:2;954:5;902:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;875:19;:86::i;:::-;763:205;;;:::o;14837:318:9:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;32675:669::-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;38475:143::-;38608:6;38475:143;;;;;:::o;3747:706:6:-;4166:23;4192:69;4220:4;4192:69;;;;;;;;;;;;;;;;;4200:5;4192:27;;;;:69;;;;;:::i;:::-;4166:95;;4295:1;4275:10;:17;:21;4271:176;;;4370:10;4359:30;;;;;;;;;;;;:::i;:::-;4351:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;4271:176;3817:636;3747:706;;:::o;3873:223:7:-;4006:12;4037:52;4059:6;4067:4;4073:1;4076:12;4037:21;:52::i;:::-;4030:59;;3873:223;;;;;:::o;4960:446::-;5125:12;5182:5;5157:21;:30;;5149:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;5241:12;5255:23;5282:6;:11;;5301:5;5308:4;5282:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5240:73;;;;5330:69;5357:6;5365:7;5374:10;5386:12;5330:26;:69::i;:::-;5323:76;;;;4960:446;;;;;;:::o;7466:628::-;7646:12;7674:7;7670:418;;;7722:1;7701:10;:17;:22;7697:286;;7916:18;7927:6;7916:10;:18::i;:::-;7908:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;7697:286;8003:10;7996:17;;;;7670:418;8044:33;8052:10;8064:12;8044:7;:33::i;:::-;7466:628;;;;;;;:::o;1175:320::-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;8616:540::-;8795:1;8775:10;:17;:21;8771:379;;;9003:10;8997:17;9059:15;9046:10;9042:2;9038:19;9031:44;8771:379;9126:12;9119:20;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:126:13:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:77::-;402:7;431:5;420:16;;365:77;;;:::o;448:118::-;535:24;553:5;535:24;:::i;:::-;530:3;523:37;448:118;;:::o;572:332::-;693:4;731:2;720:9;716:18;708:26;;744:71;812:1;801:9;797:17;788:6;744:71;:::i;:::-;825:72;893:2;882:9;878:18;869:6;825:72;:::i;:::-;572:332;;;;;:::o;910:75::-;943:6;976:2;970:9;960:19;;910:75;:::o;991:117::-;1100:1;1097;1090:12;1114:117;1223:1;1220;1213:12;1237:149;1273:7;1313:66;1306:5;1302:78;1291:89;;1237:149;;;:::o;1392:120::-;1464:23;1481:5;1464:23;:::i;:::-;1457:5;1454:34;1444:62;;1502:1;1499;1492:12;1444:62;1392:120;:::o;1518:137::-;1563:5;1601:6;1588:20;1579:29;;1617:32;1643:5;1617:32;:::i;:::-;1518:137;;;;:::o;1661:327::-;1719:6;1768:2;1756:9;1747:7;1743:23;1739:32;1736:119;;;1774:79;;:::i;:::-;1736:119;1894:1;1919:52;1963:7;1954:6;1943:9;1939:22;1919:52;:::i;:::-;1909:62;;1865:116;1661:327;;;;:::o;1994:90::-;2028:7;2071:5;2064:13;2057:21;2046:32;;1994:90;;;:::o;2090:109::-;2171:21;2186:5;2171:21;:::i;:::-;2166:3;2159:34;2090:109;;:::o;2205:210::-;2292:4;2330:2;2319:9;2315:18;2307:26;;2343:65;2405:1;2394:9;2390:17;2381:6;2343:65;:::i;:::-;2205:210;;;;:::o;2421:99::-;2473:6;2507:5;2501:12;2491:22;;2421:99;;;:::o;2526:169::-;2610:11;2644:6;2639:3;2632:19;2684:4;2679:3;2675:14;2660:29;;2526:169;;;;:::o;2701:307::-;2769:1;2779:113;2793:6;2790:1;2787:13;2779:113;;;2878:1;2873:3;2869:11;2863:18;2859:1;2854:3;2850:11;2843:39;2815:2;2812:1;2808:10;2803:15;;2779:113;;;2910:6;2907:1;2904:13;2901:101;;;2990:1;2981:6;2976:3;2972:16;2965:27;2901:101;2750:258;2701:307;;;:::o;3014:102::-;3055:6;3106:2;3102:7;3097:2;3090:5;3086:14;3082:28;3072:38;;3014:102;;;:::o;3122:364::-;3210:3;3238:39;3271:5;3238:39;:::i;:::-;3293:71;3357:6;3352:3;3293:71;:::i;:::-;3286:78;;3373:52;3418:6;3413:3;3406:4;3399:5;3395:16;3373:52;:::i;:::-;3450:29;3472:6;3450:29;:::i;:::-;3445:3;3441:39;3434:46;;3214:272;3122:364;;;;:::o;3492:313::-;3605:4;3643:2;3632:9;3628:18;3620:26;;3692:9;3686:4;3682:20;3678:1;3667:9;3663:17;3656:47;3720:78;3793:4;3784:6;3720:78;:::i;:::-;3712:86;;3492:313;;;;:::o;3811:122::-;3884:24;3902:5;3884:24;:::i;:::-;3877:5;3874:35;3864:63;;3923:1;3920;3913:12;3864:63;3811:122;:::o;3939:139::-;3985:5;4023:6;4010:20;4001:29;;4039:33;4066:5;4039:33;:::i;:::-;3939:139;;;;:::o;4084:329::-;4143:6;4192:2;4180:9;4171:7;4167:23;4163:32;4160:119;;;4198:79;;:::i;:::-;4160:119;4318:1;4343:53;4388:7;4379:6;4368:9;4364:22;4343:53;:::i;:::-;4333:63;;4289:117;4084:329;;;;:::o;4419:222::-;4512:4;4550:2;4539:9;4535:18;4527:26;;4563:71;4631:1;4620:9;4616:17;4607:6;4563:71;:::i;:::-;4419:222;;;;:::o;4647:122::-;4720:24;4738:5;4720:24;:::i;:::-;4713:5;4710:35;4700:63;;4759:1;4756;4749:12;4700:63;4647:122;:::o;4775:139::-;4821:5;4859:6;4846:20;4837:29;;4875:33;4902:5;4875:33;:::i;:::-;4775:139;;;;:::o;4920:474::-;4988:6;4996;5045:2;5033:9;5024:7;5020:23;5016:32;5013:119;;;5051:79;;:::i;:::-;5013:119;5171:1;5196:53;5241:7;5232:6;5221:9;5217:22;5196:53;:::i;:::-;5186:63;;5142:117;5298:2;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5269:118;4920:474;;;;;:::o;5400:222::-;5493:4;5531:2;5520:9;5516:18;5508:26;;5544:71;5612:1;5601:9;5597:17;5588:6;5544:71;:::i;:::-;5400:222;;;;:::o;5628:104::-;5673:7;5702:24;5720:5;5702:24;:::i;:::-;5691:35;;5628:104;;;:::o;5738:138::-;5819:32;5845:5;5819:32;:::i;:::-;5812:5;5809:43;5799:71;;5866:1;5863;5856:12;5799:71;5738:138;:::o;5882:155::-;5936:5;5974:6;5961:20;5952:29;;5990:41;6025:5;5990:41;:::i;:::-;5882:155;;;;:::o;6043:345::-;6110:6;6159:2;6147:9;6138:7;6134:23;6130:32;6127:119;;;6165:79;;:::i;:::-;6127:119;6285:1;6310:61;6363:7;6354:6;6343:9;6339:22;6310:61;:::i;:::-;6300:71;;6256:125;6043:345;;;;:::o;6394:619::-;6471:6;6479;6487;6536:2;6524:9;6515:7;6511:23;6507:32;6504:119;;;6542:79;;:::i;:::-;6504:119;6662:1;6687:53;6732:7;6723:6;6712:9;6708:22;6687:53;:::i;:::-;6677:63;;6633:117;6789:2;6815:53;6860:7;6851:6;6840:9;6836:22;6815:53;:::i;:::-;6805:63;;6760:118;6917:2;6943:53;6988:7;6979:6;6968:9;6964:22;6943:53;:::i;:::-;6933:63;;6888:118;6394:619;;;;;:::o;7019:111::-;7071:7;7100:24;7118:5;7100:24;:::i;:::-;7089:35;;7019:111;;;:::o;7136:152::-;7224:39;7257:5;7224:39;:::i;:::-;7217:5;7214:50;7204:78;;7278:1;7275;7268:12;7204:78;7136:152;:::o;7294:169::-;7355:5;7393:6;7380:20;7371:29;;7409:48;7451:5;7409:48;:::i;:::-;7294:169;;;;:::o;7469:504::-;7552:6;7560;7609:2;7597:9;7588:7;7584:23;7580:32;7577:119;;;7615:79;;:::i;:::-;7577:119;7735:1;7760:68;7820:7;7811:6;7800:9;7796:22;7760:68;:::i;:::-;7750:78;;7706:132;7877:2;7903:53;7948:7;7939:6;7928:9;7924:22;7903:53;:::i;:::-;7893:63;;7848:118;7469:504;;;;;:::o;7979:60::-;8007:3;8028:5;8021:12;;7979:60;;;:::o;8045:142::-;8095:9;8128:53;8146:34;8155:24;8173:5;8155:24;:::i;:::-;8146:34;:::i;:::-;8128:53;:::i;:::-;8115:66;;8045:142;;;:::o;8193:126::-;8243:9;8276:37;8307:5;8276:37;:::i;:::-;8263:50;;8193:126;;;:::o;8325:158::-;8407:9;8440:37;8471:5;8440:37;:::i;:::-;8427:50;;8325:158;;;:::o;8489:195::-;8608:69;8671:5;8608:69;:::i;:::-;8603:3;8596:82;8489:195;;:::o;8690:286::-;8815:4;8853:2;8842:9;8838:18;8830:26;;8866:103;8966:1;8955:9;8951:17;8942:6;8866:103;:::i;:::-;8690:286;;;;:::o;8982:117::-;9091:1;9088;9081:12;9105:117;9214:1;9211;9204:12;9228:117;9337:1;9334;9327:12;9365:553;9423:8;9433:6;9483:3;9476:4;9468:6;9464:17;9460:27;9450:122;;9491:79;;:::i;:::-;9450:122;9604:6;9591:20;9581:30;;9634:18;9626:6;9623:30;9620:117;;;9656:79;;:::i;:::-;9620:117;9770:4;9762:6;9758:17;9746:29;;9824:3;9816:4;9808:6;9804:17;9794:8;9790:32;9787:41;9784:128;;;9831:79;;:::i;:::-;9784:128;9365:553;;;;;:::o;9924:529::-;9995:6;10003;10052:2;10040:9;10031:7;10027:23;10023:32;10020:119;;;10058:79;;:::i;:::-;10020:119;10206:1;10195:9;10191:17;10178:31;10236:18;10228:6;10225:30;10222:117;;;10258:79;;:::i;:::-;10222:117;10371:65;10428:7;10419:6;10408:9;10404:22;10371:65;:::i;:::-;10353:83;;;;10149:297;9924:529;;;;;:::o;10459:329::-;10518:6;10567:2;10555:9;10546:7;10542:23;10538:32;10535:119;;;10573:79;;:::i;:::-;10535:119;10693:1;10718:53;10763:7;10754:6;10743:9;10739:22;10718:53;:::i;:::-;10708:63;;10664:117;10459:329;;;;:::o;10794:116::-;10864:21;10879:5;10864:21;:::i;:::-;10857:5;10854:32;10844:60;;10900:1;10897;10890:12;10844:60;10794:116;:::o;10916:133::-;10959:5;10997:6;10984:20;10975:29;;11013:30;11037:5;11013:30;:::i;:::-;10916:133;;;;:::o;11055:468::-;11120:6;11128;11177:2;11165:9;11156:7;11152:23;11148:32;11145:119;;;11183:79;;:::i;:::-;11145:119;11303:1;11328:53;11373:7;11364:6;11353:9;11349:22;11328:53;:::i;:::-;11318:63;;11274:117;11430:2;11456:50;11498:7;11489:6;11478:9;11474:22;11456:50;:::i;:::-;11446:60;;11401:115;11055:468;;;;;:::o;11529:619::-;11606:6;11614;11622;11671:2;11659:9;11650:7;11646:23;11642:32;11639:119;;;11677:79;;:::i;:::-;11639:119;11797:1;11822:53;11867:7;11858:6;11847:9;11843:22;11822:53;:::i;:::-;11812:63;;11768:117;11924:2;11950:53;11995:7;11986:6;11975:9;11971:22;11950:53;:::i;:::-;11940:63;;11895:118;12052:2;12078:53;12123:7;12114:6;12103:9;12099:22;12078:53;:::i;:::-;12068:63;;12023:118;11529:619;;;;;:::o;12154:117::-;12263:1;12260;12253:12;12277:180;12325:77;12322:1;12315:88;12422:4;12419:1;12412:15;12446:4;12443:1;12436:15;12463:281;12546:27;12568:4;12546:27;:::i;:::-;12538:6;12534:40;12676:6;12664:10;12661:22;12640:18;12628:10;12625:34;12622:62;12619:88;;;12687:18;;:::i;:::-;12619:88;12727:10;12723:2;12716:22;12506:238;12463:281;;:::o;12750:129::-;12784:6;12811:20;;:::i;:::-;12801:30;;12840:33;12868:4;12860:6;12840:33;:::i;:::-;12750:129;;;:::o;12885:307::-;12946:4;13036:18;13028:6;13025:30;13022:56;;;13058:18;;:::i;:::-;13022:56;13096:29;13118:6;13096:29;:::i;:::-;13088:37;;13180:4;13174;13170:15;13162:23;;12885:307;;;:::o;13198:154::-;13282:6;13277:3;13272;13259:30;13344:1;13335:6;13330:3;13326:16;13319:27;13198:154;;;:::o;13358:410::-;13435:5;13460:65;13476:48;13517:6;13476:48;:::i;:::-;13460:65;:::i;:::-;13451:74;;13548:6;13541:5;13534:21;13586:4;13579:5;13575:16;13624:3;13615:6;13610:3;13606:16;13603:25;13600:112;;;13631:79;;:::i;:::-;13600:112;13721:41;13755:6;13750:3;13745;13721:41;:::i;:::-;13441:327;13358:410;;;;;:::o;13787:338::-;13842:5;13891:3;13884:4;13876:6;13872:17;13868:27;13858:122;;13899:79;;:::i;:::-;13858:122;14016:6;14003:20;14041:78;14115:3;14107:6;14100:4;14092:6;14088:17;14041:78;:::i;:::-;14032:87;;13848:277;13787:338;;;;:::o;14131:943::-;14226:6;14234;14242;14250;14299:3;14287:9;14278:7;14274:23;14270:33;14267:120;;;14306:79;;:::i;:::-;14267:120;14426:1;14451:53;14496:7;14487:6;14476:9;14472:22;14451:53;:::i;:::-;14441:63;;14397:117;14553:2;14579:53;14624:7;14615:6;14604:9;14600:22;14579:53;:::i;:::-;14569:63;;14524:118;14681:2;14707:53;14752:7;14743:6;14732:9;14728:22;14707:53;:::i;:::-;14697:63;;14652:118;14837:2;14826:9;14822:18;14809:32;14868:18;14860:6;14857:30;14854:117;;;14890:79;;:::i;:::-;14854:117;14995:62;15049:7;15040:6;15029:9;15025:22;14995:62;:::i;:::-;14985:72;;14780:287;14131:943;;;;;;;:::o;15080:323::-;15136:6;15185:2;15173:9;15164:7;15160:23;15156:32;15153:119;;;15191:79;;:::i;:::-;15153:119;15311:1;15336:50;15378:7;15369:6;15358:9;15354:22;15336:50;:::i;:::-;15326:60;;15282:114;15080:323;;;;:::o;15409:359::-;15483:6;15532:2;15520:9;15511:7;15507:23;15503:32;15500:119;;;15538:79;;:::i;:::-;15500:119;15658:1;15683:68;15743:7;15734:6;15723:9;15719:22;15683:68;:::i;:::-;15673:78;;15629:132;15409:359;;;;:::o;15774:474::-;15842:6;15850;15899:2;15887:9;15878:7;15874:23;15870:32;15867:119;;;15905:79;;:::i;:::-;15867:119;16025:1;16050:53;16095:7;16086:6;16075:9;16071:22;16050:53;:::i;:::-;16040:63;;15996:117;16152:2;16178:53;16223:7;16214:6;16203:9;16199:22;16178:53;:::i;:::-;16168:63;;16123:118;15774:474;;;;;:::o;16254:180::-;16302:77;16299:1;16292:88;16399:4;16396:1;16389:15;16423:4;16420:1;16413:15;16440:320;16484:6;16521:1;16515:4;16511:12;16501:22;;16568:1;16562:4;16558:12;16589:18;16579:81;;16645:4;16637:6;16633:17;16623:27;;16579:81;16707:2;16699:6;16696:14;16676:18;16673:38;16670:84;;16726:18;;:::i;:::-;16670:84;16491:269;16440:320;;;:::o;16766:230::-;16906:34;16902:1;16894:6;16890:14;16883:58;16975:13;16970:2;16962:6;16958:15;16951:38;16766:230;:::o;17002:366::-;17144:3;17165:67;17229:2;17224:3;17165:67;:::i;:::-;17158:74;;17241:93;17330:3;17241:93;:::i;:::-;17359:2;17354:3;17350:12;17343:19;;17002:366;;;:::o;17374:419::-;17540:4;17578:2;17567:9;17563:18;17555:26;;17627:9;17621:4;17617:20;17613:1;17602:9;17598:17;17591:47;17655:131;17781:4;17655:131;:::i;:::-;17647:139;;17374:419;;;:::o;17799:237::-;17939:34;17935:1;17927:6;17923:14;17916:58;18008:20;18003:2;17995:6;17991:15;17984:45;17799:237;:::o;18042:366::-;18184:3;18205:67;18269:2;18264:3;18205:67;:::i;:::-;18198:74;;18281:93;18370:3;18281:93;:::i;:::-;18399:2;18394:3;18390:12;18383:19;;18042:366;;;:::o;18414:419::-;18580:4;18618:2;18607:9;18603:18;18595:26;;18667:9;18661:4;18657:20;18653:1;18642:9;18638:17;18631:47;18695:131;18821:4;18695:131;:::i;:::-;18687:139;;18414:419;;;:::o;18839:180::-;18979:32;18975:1;18967:6;18963:14;18956:56;18839:180;:::o;19025:366::-;19167:3;19188:67;19252:2;19247:3;19188:67;:::i;:::-;19181:74;;19264:93;19353:3;19264:93;:::i;:::-;19382:2;19377:3;19373:12;19366:19;;19025:366;;;:::o;19397:419::-;19563:4;19601:2;19590:9;19586:18;19578:26;;19650:9;19644:4;19640:20;19636:1;19625:9;19621:17;19614:47;19678:131;19804:4;19678:131;:::i;:::-;19670:139;;19397:419;;;:::o;19822:180::-;19870:77;19867:1;19860:88;19967:4;19964:1;19957:15;19991:4;19988:1;19981:15;20008:191;20048:4;20068:20;20086:1;20068:20;:::i;:::-;20063:25;;20102:20;20120:1;20102:20;:::i;:::-;20097:25;;20141:1;20138;20135:8;20132:34;;;20146:18;;:::i;:::-;20132:34;20191:1;20188;20184:9;20176:17;;20008:191;;;;:::o;20205:172::-;20345:24;20341:1;20333:6;20329:14;20322:48;20205:172;:::o;20383:366::-;20525:3;20546:67;20610:2;20605:3;20546:67;:::i;:::-;20539:74;;20622:93;20711:3;20622:93;:::i;:::-;20740:2;20735:3;20731:12;20724:19;;20383:366;;;:::o;20755:419::-;20921:4;20959:2;20948:9;20944:18;20936:26;;21008:9;21002:4;20998:20;20994:1;20983:9;20979:17;20972:47;21036:131;21162:4;21036:131;:::i;:::-;21028:139;;20755:419;;;:::o;21180:230::-;21320:34;21316:1;21308:6;21304:14;21297:58;21389:13;21384:2;21376:6;21372:15;21365:38;21180:230;:::o;21416:366::-;21558:3;21579:67;21643:2;21638:3;21579:67;:::i;:::-;21572:74;;21655:93;21744:3;21655:93;:::i;:::-;21773:2;21768:3;21764:12;21757:19;;21416:366;;;:::o;21788:419::-;21954:4;21992:2;21981:9;21977:18;21969:26;;22041:9;22035:4;22031:20;22027:1;22016:9;22012:17;22005:47;22069:131;22195:4;22069:131;:::i;:::-;22061:139;;21788:419;;;:::o;22213:172::-;22353:24;22349:1;22341:6;22337:14;22330:48;22213:172;:::o;22391:366::-;22533:3;22554:67;22618:2;22613:3;22554:67;:::i;:::-;22547:74;;22630:93;22719:3;22630:93;:::i;:::-;22748:2;22743:3;22739:12;22732:19;;22391:366;;;:::o;22763:419::-;22929:4;22967:2;22956:9;22952:18;22944:26;;23016:9;23010:4;23006:20;23002:1;22991:9;22987:17;22980:47;23044:131;23170:4;23044:131;:::i;:::-;23036:139;;22763:419;;;:::o;23188:177::-;23328:29;23324:1;23316:6;23312:14;23305:53;23188:177;:::o;23371:366::-;23513:3;23534:67;23598:2;23593:3;23534:67;:::i;:::-;23527:74;;23610:93;23699:3;23610:93;:::i;:::-;23728:2;23723:3;23719:12;23712:19;;23371:366;;;:::o;23743:419::-;23909:4;23947:2;23936:9;23932:18;23924:26;;23996:9;23990:4;23986:20;23982:1;23971:9;23967:17;23960:47;24024:131;24150:4;24024:131;:::i;:::-;24016:139;;23743:419;;;:::o;24168:168::-;24308:20;24304:1;24296:6;24292:14;24285:44;24168:168;:::o;24342:366::-;24484:3;24505:67;24569:2;24564:3;24505:67;:::i;:::-;24498:74;;24581:93;24670:3;24581:93;:::i;:::-;24699:2;24694:3;24690:12;24683:19;;24342:366;;;:::o;24714:419::-;24880:4;24918:2;24907:9;24903:18;24895:26;;24967:9;24961:4;24957:20;24953:1;24942:9;24938:17;24931:47;24995:131;25121:4;24995:131;:::i;:::-;24987:139;;24714:419;;;:::o;25139:180::-;25187:77;25184:1;25177:88;25284:4;25281:1;25274:15;25308:4;25305:1;25298:15;25325:169;25465:21;25461:1;25453:6;25449:14;25442:45;25325:169;:::o;25500:366::-;25642:3;25663:67;25727:2;25722:3;25663:67;:::i;:::-;25656:74;;25739:93;25828:3;25739:93;:::i;:::-;25857:2;25852:3;25848:12;25841:19;;25500:366;;;:::o;25872:419::-;26038:4;26076:2;26065:9;26061:18;26053:26;;26125:9;26119:4;26115:20;26111:1;26100:9;26096:17;26089:47;26153:131;26279:4;26153:131;:::i;:::-;26145:139;;25872:419;;;:::o;26297:305::-;26337:3;26356:20;26374:1;26356:20;:::i;:::-;26351:25;;26390:20;26408:1;26390:20;:::i;:::-;26385:25;;26544:1;26476:66;26472:74;26469:1;26466:81;26463:107;;;26550:18;;:::i;:::-;26463:107;26594:1;26591;26587:9;26580:16;;26297:305;;;;:::o;26608:348::-;26648:7;26671:20;26689:1;26671:20;:::i;:::-;26666:25;;26705:20;26723:1;26705:20;:::i;:::-;26700:25;;26893:1;26825:66;26821:74;26818:1;26815:81;26810:1;26803:9;26796:17;26792:105;26789:131;;;26900:18;;:::i;:::-;26789:131;26948:1;26945;26941:9;26930:20;;26608:348;;;;:::o;26962:143::-;27019:5;27050:6;27044:13;27035:22;;27066:33;27093:5;27066:33;:::i;:::-;26962:143;;;;:::o;27111:351::-;27181:6;27230:2;27218:9;27209:7;27205:23;27201:32;27198:119;;;27236:79;;:::i;:::-;27198:119;27356:1;27381:64;27437:7;27428:6;27417:9;27413:22;27381:64;:::i;:::-;27371:74;;27327:128;27111:351;;;;:::o;27468:148::-;27570:11;27607:3;27592:18;;27468:148;;;;:::o;27622:377::-;27728:3;27756:39;27789:5;27756:39;:::i;:::-;27811:89;27893:6;27888:3;27811:89;:::i;:::-;27804:96;;27909:52;27954:6;27949:3;27942:4;27935:5;27931:16;27909:52;:::i;:::-;27986:6;27981:3;27977:16;27970:23;;27732:267;27622:377;;;;:::o;28005:435::-;28185:3;28207:95;28298:3;28289:6;28207:95;:::i;:::-;28200:102;;28319:95;28410:3;28401:6;28319:95;:::i;:::-;28312:102;;28431:3;28424:10;;28005:435;;;;;:::o;28446:225::-;28586:34;28582:1;28574:6;28570:14;28563:58;28655:8;28650:2;28642:6;28638:15;28631:33;28446:225;:::o;28677:366::-;28819:3;28840:67;28904:2;28899:3;28840:67;:::i;:::-;28833:74;;28916:93;29005:3;28916:93;:::i;:::-;29034:2;29029:3;29025:12;29018:19;;28677:366;;;:::o;29049:419::-;29215:4;29253:2;29242:9;29238:18;29230:26;;29302:9;29296:4;29292:20;29288:1;29277:9;29273:17;29266:47;29330:131;29456:4;29330:131;:::i;:::-;29322:139;;29049:419;;;:::o;29474:234::-;29614:34;29610:1;29602:6;29598:14;29591:58;29683:17;29678:2;29670:6;29666:15;29659:42;29474:234;:::o;29714:366::-;29856:3;29877:67;29941:2;29936:3;29877:67;:::i;:::-;29870:74;;29953:93;30042:3;29953:93;:::i;:::-;30071:2;30066:3;30062:12;30055:19;;29714:366;;;:::o;30086:419::-;30252:4;30290:2;30279:9;30275:18;30267:26;;30339:9;30333:4;30329:20;30325:1;30314:9;30310:17;30303:47;30367:131;30493:4;30367:131;:::i;:::-;30359:139;;30086:419;;;:::o;30511:225::-;30651:34;30647:1;30639:6;30635:14;30628:58;30720:8;30715:2;30707:6;30703:15;30696:33;30511:225;:::o;30742:366::-;30884:3;30905:67;30969:2;30964:3;30905:67;:::i;:::-;30898:74;;30981:93;31070:3;30981:93;:::i;:::-;31099:2;31094:3;31090:12;31083:19;;30742:366;;;:::o;31114:419::-;31280:4;31318:2;31307:9;31303:18;31295:26;;31367:9;31361:4;31357:20;31353:1;31342:9;31338:17;31331:47;31395:131;31521:4;31395:131;:::i;:::-;31387:139;;31114:419;;;:::o;31539:225::-;31679:34;31675:1;31667:6;31663:14;31656:58;31748:8;31743:2;31735:6;31731:15;31724:33;31539:225;:::o;31770:366::-;31912:3;31933:67;31997:2;31992:3;31933:67;:::i;:::-;31926:74;;32009:93;32098:3;32009:93;:::i;:::-;32127:2;32122:3;32118:12;32111:19;;31770:366;;;:::o;32142:419::-;32308:4;32346:2;32335:9;32331:18;32323:26;;32395:9;32389:4;32385:20;32381:1;32370:9;32366:17;32359:47;32423:131;32549:4;32423:131;:::i;:::-;32415:139;;32142:419;;;:::o;32567:225::-;32707:34;32703:1;32695:6;32691:14;32684:58;32776:8;32771:2;32763:6;32759:15;32752:33;32567:225;:::o;32798:366::-;32940:3;32961:67;33025:2;33020:3;32961:67;:::i;:::-;32954:74;;33037:93;33126:3;33037:93;:::i;:::-;33155:2;33150:3;33146:12;33139:19;;32798:366;;;:::o;33170:419::-;33336:4;33374:2;33363:9;33359:18;33351:26;;33423:9;33417:4;33413:20;33409:1;33398:9;33394:17;33387:47;33451:131;33577:4;33451:131;:::i;:::-;33443:139;;33170:419;;;:::o;33595:230::-;33735:34;33731:1;33723:6;33719:14;33712:58;33804:13;33799:2;33791:6;33787:15;33780:38;33595:230;:::o;33831:366::-;33973:3;33994:67;34058:2;34053:3;33994:67;:::i;:::-;33987:74;;34070:93;34159:3;34070:93;:::i;:::-;34188:2;34183:3;34179:12;34172:19;;33831:366;;;:::o;34203:419::-;34369:4;34407:2;34396:9;34392:18;34384:26;;34456:9;34450:4;34446:20;34442:1;34431:9;34427:17;34420:47;34484:131;34610:4;34484:131;:::i;:::-;34476:139;;34203:419;;;:::o;34628:134::-;34686:9;34719:37;34750:5;34719:37;:::i;:::-;34706:50;;34628:134;;;:::o;34768:147::-;34863:45;34902:5;34863:45;:::i;:::-;34858:3;34851:58;34768:147;;:::o;34921:348::-;35050:4;35088:2;35077:9;35073:18;35065:26;;35101:79;35177:1;35166:9;35162:17;35153:6;35101:79;:::i;:::-;35190:72;35258:2;35247:9;35243:18;35234:6;35190:72;:::i;:::-;34921:348;;;;;:::o;35275:332::-;35396:4;35434:2;35423:9;35419:18;35411:26;;35447:71;35515:1;35504:9;35500:17;35491:6;35447:71;:::i;:::-;35528:72;35596:2;35585:9;35581:18;35572:6;35528:72;:::i;:::-;35275:332;;;;;:::o;35613:137::-;35667:5;35698:6;35692:13;35683:22;;35714:30;35738:5;35714:30;:::i;:::-;35613:137;;;;:::o;35756:345::-;35823:6;35872:2;35860:9;35851:7;35847:23;35843:32;35840:119;;;35878:79;;:::i;:::-;35840:119;35998:1;36023:61;36076:7;36067:6;36056:9;36052:22;36023:61;:::i;:::-;36013:71;;35969:125;35756:345;;;;:::o;36107:182::-;36247:34;36243:1;36235:6;36231:14;36224:58;36107:182;:::o;36295:366::-;36437:3;36458:67;36522:2;36517:3;36458:67;:::i;:::-;36451:74;;36534:93;36623:3;36534:93;:::i;:::-;36652:2;36647:3;36643:12;36636:19;;36295:366;;;:::o;36667:419::-;36833:4;36871:2;36860:9;36856:18;36848:26;;36920:9;36914:4;36910:20;36906:1;36895:9;36891:17;36884:47;36948:131;37074:4;36948:131;:::i;:::-;36940:139;;36667:419;;;:::o;37092:180::-;37140:77;37137:1;37130:88;37237:4;37234:1;37227:15;37261:4;37258:1;37251:15;37278:185;37318:1;37335:20;37353:1;37335:20;:::i;:::-;37330:25;;37369:20;37387:1;37369:20;:::i;:::-;37364:25;;37408:1;37398:35;;37413:18;;:::i;:::-;37398:35;37455:1;37452;37448:9;37443:14;;37278:185;;;;:::o;37469:179::-;37609:31;37605:1;37597:6;37593:14;37586:55;37469:179;:::o;37654:366::-;37796:3;37817:67;37881:2;37876:3;37817:67;:::i;:::-;37810:74;;37893:93;37982:3;37893:93;:::i;:::-;38011:2;38006:3;38002:12;37995:19;;37654:366;;;:::o;38026:419::-;38192:4;38230:2;38219:9;38215:18;38207:26;;38279:9;38273:4;38269:20;38265:1;38254:9;38250:17;38243:47;38307:131;38433:4;38307:131;:::i;:::-;38299:139;;38026:419;;;:::o;38451:147::-;38552:11;38589:3;38574:18;;38451:147;;;;:::o;38604:114::-;;:::o;38724:398::-;38883:3;38904:83;38985:1;38980:3;38904:83;:::i;:::-;38897:90;;38996:93;39085:3;38996:93;:::i;:::-;39114:1;39109:3;39105:11;39098:18;;38724:398;;;:::o;39128:379::-;39312:3;39334:147;39477:3;39334:147;:::i;:::-;39327:154;;39498:3;39491:10;;39128:379;;;:::o;39513:245::-;39653:34;39649:1;39641:6;39637:14;39630:58;39722:28;39717:2;39709:6;39705:15;39698:53;39513:245;:::o;39764:366::-;39906:3;39927:67;39991:2;39986:3;39927:67;:::i;:::-;39920:74;;40003:93;40092:3;40003:93;:::i;:::-;40121:2;40116:3;40112:12;40105:19;;39764:366;;;:::o;40136:419::-;40302:4;40340:2;40329:9;40325:18;40317:26;;40389:9;40383:4;40379:20;40375:1;40364:9;40360:17;40353:47;40417:131;40543:4;40417:131;:::i;:::-;40409:139;;40136:419;;;:::o;40561:98::-;40612:6;40646:5;40640:12;40630:22;;40561:98;;;:::o;40665:168::-;40748:11;40782:6;40777:3;40770:19;40822:4;40817:3;40813:14;40798:29;;40665:168;;;;:::o;40839:360::-;40925:3;40953:38;40985:5;40953:38;:::i;:::-;41007:70;41070:6;41065:3;41007:70;:::i;:::-;41000:77;;41086:52;41131:6;41126:3;41119:4;41112:5;41108:16;41086:52;:::i;:::-;41163:29;41185:6;41163:29;:::i;:::-;41158:3;41154:39;41147:46;;40929:270;40839:360;;;;:::o;41205:640::-;41400:4;41438:3;41427:9;41423:19;41415:27;;41452:71;41520:1;41509:9;41505:17;41496:6;41452:71;:::i;:::-;41533:72;41601:2;41590:9;41586:18;41577:6;41533:72;:::i;:::-;41615;41683:2;41672:9;41668:18;41659:6;41615:72;:::i;:::-;41734:9;41728:4;41724:20;41719:2;41708:9;41704:18;41697:48;41762:76;41833:4;41824:6;41762:76;:::i;:::-;41754:84;;41205:640;;;;;;;:::o;41851:141::-;41907:5;41938:6;41932:13;41923:22;;41954:32;41980:5;41954:32;:::i;:::-;41851:141;;;;:::o;41998:349::-;42067:6;42116:2;42104:9;42095:7;42091:23;42087:32;42084:119;;;42122:79;;:::i;:::-;42084:119;42242:1;42267:63;42322:7;42313:6;42302:9;42298:22;42267:63;:::i;:::-;42257:73;;42213:127;41998:349;;;;:::o;42353:229::-;42493:34;42489:1;42481:6;42477:14;42470:58;42562:12;42557:2;42549:6;42545:15;42538:37;42353:229;:::o;42588:366::-;42730:3;42751:67;42815:2;42810:3;42751:67;:::i;:::-;42744:74;;42827:93;42916:3;42827:93;:::i;:::-;42945:2;42940:3;42936:12;42929:19;;42588:366;;;:::o;42960:419::-;43126:4;43164:2;43153:9;43149:18;43141:26;;43213:9;43207:4;43203:20;43199:1;43188:9;43184:17;43177:47;43241:131;43367:4;43241:131;:::i;:::-;43233:139;;42960:419;;;:::o;43385:225::-;43525:34;43521:1;43513:6;43509:14;43502:58;43594:8;43589:2;43581:6;43577:15;43570:33;43385:225;:::o;43616:366::-;43758:3;43779:67;43843:2;43838:3;43779:67;:::i;:::-;43772:74;;43855:93;43944:3;43855:93;:::i;:::-;43973:2;43968:3;43964:12;43957:19;;43616:366;;;:::o;43988:419::-;44154:4;44192:2;44181:9;44177:18;44169:26;;44241:9;44235:4;44231:20;44227:1;44216:9;44212:17;44205:47;44269:131;44395:4;44269:131;:::i;:::-;44261:139;;43988:419;;;:::o;44413:373::-;44517:3;44545:38;44577:5;44545:38;:::i;:::-;44599:88;44680:6;44675:3;44599:88;:::i;:::-;44592:95;;44696:52;44741:6;44736:3;44729:4;44722:5;44718:16;44696:52;:::i;:::-;44773:6;44768:3;44764:16;44757:23;;44521:265;44413:373;;;;:::o;44792:271::-;44922:3;44944:93;45033:3;45024:6;44944:93;:::i;:::-;44937:100;;45054:3;45047:10;;44792:271;;;;:::o;45069:179::-;45209:31;45205:1;45197:6;45193:14;45186:55;45069:179;:::o;45254:366::-;45396:3;45417:67;45481:2;45476:3;45417:67;:::i;:::-;45410:74;;45493:93;45582:3;45493:93;:::i;:::-;45611:2;45606:3;45602:12;45595:19;;45254:366;;;:::o;45626:419::-;45792:4;45830:2;45819:9;45815:18;45807:26;;45879:9;45873:4;45869:20;45865:1;45854:9;45850:17;45843:47;45907:131;46033:4;45907:131;:::i;:::-;45899:139;;45626:419;;;:::o
Swarm Source
ipfs://f502de48248b6a7d91eac252c47e933000fe452c63bd5a90392be36a40b73e39
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.