ETH Price: $3,089.08 (+0.11%)
Gas: 6 Gwei

Token

EGGTOMATONSORIGINS (EOR)
 

Overview

Max Total Supply

41 EOR

Holders

26

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 EOR
0xb267267287fef4e6508613dc152605186286e38b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EGGTOMATONSORIGINS

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 3 of 16: EGGTOMATONSORIGINS.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;

abstract contract MINTPASS {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function tokenOfOwnerByIndex(address owner, uint256 index) public virtual view returns (uint256);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

import './ERC721Enumerable.sol';
import './Ownable.sol';
import './Strings.sol';
import './Payment.sol';
import './Guard.sol';

contract EGGTOMATONSORIGINS is ERC721Enumerable, Ownable, Payment, Guard {
    using Strings for uint256;
    string public baseURI1;
    string public baseURI2;
    string public baseURI3;
    string public baseURI4;
    string public baseURI5;
    string public baseURI6;
    string public baseURI7;

	MINTPASS private mintpass;

  	//settings
	uint256 private maxSupplyEdition1 = 250;
	uint256 private maxSupplyEdition2 = 250;
	uint256 private maxSupplyEdition3 = 250;
	uint256 private maxSupplyEdition4 = 250;
	uint256 private maxSupplyEdition5 = 250;
	uint256 private maxSupplyEdition6 = 250;
	uint256 private maxSupplyEdition7 = 250;
	uint256 totalS = maxSupplyEdition1 + maxSupplyEdition2 + maxSupplyEdition3 + maxSupplyEdition4 + maxSupplyEdition5 + maxSupplyEdition6 + maxSupplyEdition7;
  	bool public statusEdition1 = false;
	bool public statusEdition2 = false;
	bool public statusEdition3 = false;
	bool public statusEdition4 = false;
	bool public statusEdition5 = false;
	bool public statusEdition6 = false;
	bool public statusEdition7 = false;
	uint256[] claimE1; 	uint256[] mintedE1;
	uint256[] claimE2; 	uint256[] mintedE2;
	uint256[] claimE3; 	uint256[] mintedE3;
	uint256[] claimE4; 	uint256[] mintedE4;
	uint256[] claimE5; 	uint256[] mintedE5;
	uint256[] claimE6; 	uint256[] mintedE6;
	uint256[] claimE7; 	uint256[] mintedE7;

	//shares
	address[] private addressList = [
	0x575D9b550006998B2A64FbC5EB1Bf0aC9e4a918b];
	uint[] private shareList = [100];

	//token
	constructor(
	string memory _name,
	string memory _symbol,
	address mintpassContractAddress
	) 
    ERC721(_name, _symbol)
	    Payment(addressList, shareList){
		mintpass = MINTPASS(mintpassContractAddress);
	}

	//check if claim
	function checkE1(uint256 n) private view returns (bool) {
    for (uint256 i = 0; i < claimE1.length; i++) {
        if (claimE1[i] == n) {
            return true;
    }
    }
    return false;
	}
	function checkE1minted(uint256 n) public view returns (bool) {
    for (uint256 i = 0; i < mintedE1.length; i++) {
        if (mintedE1[i] == n) {
            return true;
    }
    }
    return false;
	}
	function checkE2(uint256 n) private view returns (bool) {
    for (uint256 i = 0; i < claimE2.length; i++) {
        if (claimE2[i] == n) {
            return true;
    }
    }
    return false;
	}
	function checkE2minted(uint256 n) public view returns (bool) {
    for (uint256 i = 0; i < mintedE2.length; i++) {
        if (mintedE2[i] == n) {
            return true;
    }
    }
    return false;
	}
	function checkE3(uint256 n) private view returns (bool) {
    for (uint256 i = 0; i < claimE3.length; i++) {
        if (claimE3[i] == n) {
            return true;
    }
    }
    return false;
	}
	function checkE3minted(uint256 n) public view returns (bool) {
    for (uint256 i = 0; i < mintedE3.length; i++) {
        if (mintedE3[i] == n) {
            return true;
    }
    }
    return false;
	}
	function checkE4(uint256 n) private view returns (bool) {
    for (uint256 i = 0; i < claimE4.length; i++) {
        if (claimE4[i] == n) {
            return true;
    }
    }
    return false;
	}
	function checkE4minted(uint256 n) public view returns (bool) {
    for (uint256 i = 0; i < mintedE4.length; i++) {
        if (mintedE4[i] == n) {
            return true;
    }
    }
    return false;
	}
	function checkE5(uint256 n) private view returns (bool) {
    for (uint256 i = 0; i < claimE5.length; i++) {
        if (claimE5[i] == n) {
            return true;
    }
    }
    return false;
	}
	function checkE5minted(uint256 n) public view returns (bool) {
    for (uint256 i = 0; i < mintedE5.length; i++) {
        if (mintedE5[i] == n) {
            return true;
    }
    }
    return false;
	}

	function checkE6(uint256 n) private view returns (bool) {
    for (uint256 i = 0; i < claimE6.length; i++) {
        if (claimE6[i] == n) {
            return true;
    }
    }
    return false;
	}
	function checkE6minted(uint256 n) public view returns (bool) {
    for (uint256 i = 0; i < mintedE6.length; i++) {
        if (mintedE6[i] == n) {
            return true;
    }
    }
    return false;
	}
	function checkE7(uint256 n) private view returns (bool) {
    for (uint256 i = 0; i < claimE7.length; i++) {
        if (claimE7[i] == n) {
            return true;
    }
    }
    return false;
	}
	function checkE7minted(uint256 n) public view returns (bool) {
    for (uint256 i = 0; i < mintedE7.length; i++) {
        if (mintedE7[i] == n) {
            return true;
    }
    }
    return false;
	}
	

	function startingIndex() public onlyOwner {
	uint tokenID = 0;
	_safeMint(msg.sender, tokenID, "");
	}

	// editon1
	function freeclaimEdition1(uint256 tokenID) public {
	uint256 s = totalSupply();
	require(statusEdition1, "Mint pass is not active" );
	require(mintpass.ownerOf(tokenID) == msg.sender, "You don't own this token"); //must be owner
	require(checkE1minted(tokenID) == false); //must not be claimed already
	//mint
	_safeMint(msg.sender, s, "");
	claimE1.push(s);
	delete s;
	mintedE1.push(tokenID);
	}

	// editon2
	function freeclaimEdition2(uint256 tokenID) public {
	uint256 s = totalSupply();
	require(statusEdition2, "Mint pass is not active" );
	require(mintpass.ownerOf(tokenID) == msg.sender, "You don't own this token"); //must be owner
	require(checkE2minted(tokenID) == false); //must not be claimed already
	//mint
	_safeMint(msg.sender, s, "");
	claimE2.push(s);
	delete s;
	mintedE2.push(tokenID);
	}

	// editon3
	function freeclaimEdition3(uint256 tokenID) public {
	uint256 s = totalSupply();
	require(statusEdition3, "Mint pass is not active" );
	require(mintpass.ownerOf(tokenID) == msg.sender, "You don't own this token"); //must be owner
	require(checkE3minted(tokenID) == false); //must not be claimed already
	//mint
	_safeMint(msg.sender, s, "");
	claimE3.push(s);
	delete s;
	mintedE3.push(tokenID);
	}

	// editon4
	function freeclaimEdition4(uint256 tokenID) public {
	uint256 s = totalSupply();
	require(statusEdition4, "Mint pass is not active" );
	require(mintpass.ownerOf(tokenID) == msg.sender, "You don't own this token"); //must be owner
	require(checkE4minted(tokenID) == false); //must not be claimed already
	//mint
	_safeMint(msg.sender, s, "");
	claimE4.push(s);
	delete s;
	mintedE4.push(tokenID);
	}

	// editon5
	function freeclaimEdition5(uint256 tokenID) public {
	uint256 s = totalSupply();
	require(statusEdition5, "Mint pass is not active" );
	require(mintpass.ownerOf(tokenID) == msg.sender, "You don't own this token"); //must be owner
	require(checkE5minted(tokenID) == false); //must not be claimed already
	//mint
	_safeMint(msg.sender, s, "");
	claimE5.push(s);
	delete s;
	mintedE5.push(tokenID);
	}

	// editon6
	function freeclaimEdition6(uint256 tokenID) public {
	uint256 s = totalSupply();
	require(statusEdition6, "Mint pass is not active" );
	require(mintpass.ownerOf(tokenID) == msg.sender, "You don't own this token"); //must be owner
	require(checkE6minted(tokenID) == false); //must not be claimed already
	//mint
	_safeMint(msg.sender, s, "");
	claimE6.push(s);
	delete s;
	mintedE6.push(tokenID);
	}

	// editon7
	function freeclaimEdition7(uint256 tokenID) public {
	uint256 s = totalSupply();
	require(statusEdition7, "Mint pass is not active" );
	require(mintpass.ownerOf(tokenID) == msg.sender, "You don't own this token"); //must be owner
	require(checkE7minted(tokenID) == false); //must not be claimed already
	//mint
	_safeMint(msg.sender, s, "");
	claimE7.push(s);
	delete s;
	mintedE7.push(tokenID);
	}

	//read metadata
	function _baseURI1() internal view virtual returns (string memory) {
	return baseURI1;
	}
		//read metadata
	function _baseURI2() internal view virtual returns (string memory) {
	return baseURI2;
	}
		//read metadata
	function _baseURI3() internal view virtual returns (string memory) {
	return baseURI3;
	}
		//read metadata
	function _baseURI4() internal view virtual returns (string memory) {
	return baseURI4;
	}
		//read metadata
	function _baseURI5() internal view virtual returns (string memory) {
	return baseURI5;
	}
		//read metadata
	function _baseURI6() internal view virtual returns (string memory) {
	return baseURI6;
	}
		//read metadata
	function _baseURI7() internal view virtual returns (string memory) {
	return baseURI7;
	}

	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
	require(_exists(tokenId));
	if(tokenId == 0){
		string memory currentBaseURI = _baseURI1();
		return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}
	else if(checkE1(tokenId)){
		string memory currentBaseURI = _baseURI1();
		return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}
	else if(checkE2(tokenId)){
		string memory currentBaseURI = _baseURI2();
		return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}
	else if(checkE3(tokenId)){
	string memory currentBaseURI = _baseURI3();
	return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}
	else if(checkE4(tokenId)){
	string memory currentBaseURI = _baseURI4();
	return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}
	else if(checkE5(tokenId)){
	string memory currentBaseURI = _baseURI5();
	return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}
	else if(checkE6(tokenId)){
	string memory currentBaseURI = _baseURI6();
	return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}
	else{
		string memory currentBaseURI = _baseURI7();
		return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}
	}

	function setEdition1(bool _status) public onlyOwner {
	statusEdition1 = _status;
	}
	function setEdition2(bool _status) public onlyOwner {
	statusEdition2 = _status;
	}
	function setEdition3(bool _status) public onlyOwner {
	statusEdition3 = _status;
	}
	function setEdition4(bool _status) public onlyOwner {
	statusEdition4 = _status;
	}
	function setEdition5(bool _status) public onlyOwner {
	statusEdition5 = _status;
	}
	function setEdition6(bool _status) public onlyOwner {
	statusEdition6 = _status;
	}
	function setEdition7(bool _status) public onlyOwner {
	statusEdition7 = _status;
	}

	//write metadata
	function setURI1(string memory _newBaseURI) public onlyOwner {
	baseURI1 = _newBaseURI;
	}
	function setURI2(string memory _newBaseURI) public onlyOwner {
	baseURI2 = _newBaseURI;
	}
	function setURI3(string memory _newBaseURI) public onlyOwner {
	baseURI3 = _newBaseURI;
	}
	function setURI4(string memory _newBaseURI) public onlyOwner {
	baseURI4 = _newBaseURI;
	}
	function setURI5(string memory _newBaseURI) public onlyOwner {
	baseURI5 = _newBaseURI;
	}
	function setURI6(string memory _newBaseURI) public onlyOwner {
	baseURI6 = _newBaseURI;
	}
	function setURI7(string memory _newBaseURI) public onlyOwner {
	baseURI7 = _newBaseURI;
	}

	function withdraw() public payable onlyOwner {
	(bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
	require(success);
	}
}

File 1 of 16: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 16: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 4 of 16: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 5 of 16: ERC721.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;     
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }     
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] ){
            ++count;
          }
        }
        delete length;
        return count;
    }
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }     
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }
	function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
	function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
	function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
	function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }
	function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
	function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
	function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
	function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }
	function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
	function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 16: ERC721Enumerable.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./ERC721.sol";
import "./IERC721Enumerable.sol";
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

File 7 of 16: Guard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract Guard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier noRentry() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 8 of 16: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 9 of 16: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 10 of 16: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 11 of 16: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 12 of 16: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 13 of 16: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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() {
        _setOwner(_msgSender());
    }
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 14 of 16: Payment.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Address.sol";
import "./Context.sol";
import "./SafeMath.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.
 *
 * `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.
 */
contract Payment is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(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;

    /**
     * @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 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 address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @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 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @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_);
    }
}

File 15 of 16: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 16 of 16: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"mintpassContractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI1","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI2","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI3","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI4","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI5","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI6","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI7","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"checkE1minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"checkE2minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"checkE3minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"checkE4minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"checkE5minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"checkE6minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"checkE7minted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"freeclaimEdition1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"freeclaimEdition2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"freeclaimEdition3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"freeclaimEdition4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"freeclaimEdition5","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"freeclaimEdition6","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenID","type":"uint256"}],"name":"freeclaimEdition7","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setEdition1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setEdition2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setEdition3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setEdition4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setEdition5","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setEdition6","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setEdition7","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI4","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI5","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI6","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI7","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":[],"name":"startingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"statusEdition1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"statusEdition2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"statusEdition3","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"statusEdition4","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"statusEdition5","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"statusEdition6","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"statusEdition7","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260fa601481905560158190556016819055601781905560188190556019819055601a8190558080808062000039818062000704565b62000045919062000704565b62000051919062000704565b6200005d919062000704565b62000069919062000704565b62000075919062000704565b601b55601c805466ffffffffffffff19169055604080516020810190915273575d9b550006998b2a64fbc5eb1bf0ac9e4a918b8152620000ba90602b906001620005ad565b50604080516020810190915260648152620000da90602c90600162000617565b50348015620000e857600080fd5b50604051620053d8380380620053d88339810160408190526200010b91620007ec565b602b8054806020026020016040519081016040528092919081815260200182805480156200016357602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000144575b5050505050602c805480602002602001604051908101604052809291908181526020018280548015620001b657602002820191906000526020600020905b815481526020019060010190808311620001a1575b50508751889350879250620001d4915060009060208501906200065a565b508051620001ea9060019060208401906200065a565b50505062000207620002016200036960201b60201c565b6200036d565b8051825114620002795760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002cc5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000270565b60005b8251811015620003385762000323838281518110620002f257620002f262000879565b60200260200101518383815181106200030f576200030f62000879565b6020026020010151620003bf60201b60201c565b806200032f816200088f565b915050620002cf565b50506001600b5550601380546001600160a01b0319166001600160a01b039290921691909117905550620008ea9050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200042c5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000270565b600081116200047e5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000270565b6001600160a01b03821660009081526008602052604090205415620004fa5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000270565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b03841690811790915560009081526008602052604090208190556006546200056490829062000704565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b82805482825590600052602060002090810192821562000605579160200282015b828111156200060557825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005ce565b5062000613929150620006d7565b5090565b82805482825590600052602060002090810192821562000605579160200282015b8281111562000605578251829060ff1690559160200191906001019062000638565b8280546200066890620008ad565b90600052602060002090601f0160209004810192826200068c576000855562000605565b82601f10620006a757805160ff191683800117855562000605565b8280016001018555821562000605579182015b8281111562000605578251825591602001919060010190620006ba565b5b80821115620006135760008155600101620006d8565b634e487b7160e01b600052601160045260246000fd5b600082198211156200071a576200071a620006ee565b500190565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200074757600080fd5b81516001600160401b03808211156200076457620007646200071f565b604051601f8301601f19908116603f011681019082821181831017156200078f576200078f6200071f565b81604052838152602092508683858801011115620007ac57600080fd5b600091505b83821015620007d05785820183015181830184015290820190620007b1565b83821115620007e25760008385830101525b9695505050505050565b6000806000606084860312156200080257600080fd5b83516001600160401b03808211156200081a57600080fd5b620008288783880162000735565b945060208601519150808211156200083f57600080fd5b506200084e8682870162000735565b604086015190935090506001600160a01b03811681146200086e57600080fd5b809150509250925092565b634e487b7160e01b600052603260045260246000fd5b6000600019821415620008a657620008a6620006ee565b5060010190565b600181811c90821680620008c257607f821691505b60208210811415620008e457634e487b7160e01b600052602260045260246000fd5b50919050565b614ade80620008fa6000396000f3fe6080604052600436106104695760003560e01c806370a0823111610243578063c4bd830c11610143578063e985e9c5116100bb578063ef45bdd51161008a578063f8449b151161006f578063f8449b1514610d67578063f94872a014610d7c578063ff1f5c2c14610d9c57600080fd5b8063ef45bdd514610d27578063f2fde38b14610d4757600080fd5b8063e985e9c514610c7b578063eac6d65b14610cd1578063ec08cdc214610cf2578063ed5906ae14610d0757600080fd5b8063d824e1a811610112578063e13d85db116100f7578063e13d85db14610c31578063e33b7de314610c51578063e6ceb34d14610c6657600080fd5b8063d824e1a814610bf1578063da70d03514610c1157600080fd5b8063c4bd830c14610b59578063c87b56dd14610b79578063cb774d4714610b99578063ce7c2ac214610bae57600080fd5b80639dcc314f116101d6578063a61b4c70116101a5578063ac54cec21161018a578063ac54cec214610aff578063b20b0b2414610b19578063b88d4fde14610b3957600080fd5b8063a61b4c7014610abf578063a75d8d3c14610adf57600080fd5b80639dcc314f14610a3d578063a22cb46514610a5d578063a240cd5c14610a7d578063a30ed58314610a9f57600080fd5b80638b83209b116102125780638b83209b1461099a5780638da5cb5b146109ba57806395d89b41146109e55780639852595c146109fa57600080fd5b806370a0823114610923578063715018a61461094357806376b58039146109585780638462151c1461096d57600080fd5b806331e98a6f1161036957806342842e0e116102e1578063528a3dd0116102b05780635e8ae2a3116102955780635e8ae2a3146108c45780636352211e146108e45780636d7884871461090457600080fd5b8063528a3dd0146108845780635e493c15146108a457600080fd5b806342842e0e146108045780634dd1dbf2146108245780634f6ccce714610844578063527602301461086457600080fd5b80633ccfd60b116103385780633ec4ead21161031d5780633ec4ead2146107a4578063400c2d89146107c457806340327c30146107e457600080fd5b80633ccfd60b1461077c5780633e20f9b91461078457600080fd5b806331e98a6f1461070f57806338e73f701461072f5780633a043ef0146107525780633a98ef391461076757600080fd5b806318f6584c116103fc5780631e77ed75116103cb57806323b872dd116103b057806323b872dd146106af57806323f80ccd146106cf5780632f745c59146106ef57600080fd5b80631e77ed751461066b578063222ff7cf1461068f57600080fd5b806318f6584c146105f6578063191655871461061657806319b74247146106365780631c5a3e2b1461064b57600080fd5b8063095ea7b311610438578063095ea7b3146105805780630aaf0c2e146105a25780630fefac0d146105b757806318160ddd146105d757600080fd5b806301ffc9a7146104c457806306567129146104f957806306fdde0314610519578063081812fc1461053b57600080fd5b366104bf577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b3480156104d057600080fd5b506104e46104df366004614474565b610dbc565b60405190151581526020015b60405180910390f35b34801561050557600080fd5b506104e4610514366004614491565b610e18565b34801561052557600080fd5b5061052e610e6f565b6040516104f09190614520565b34801561054757600080fd5b5061055b610556366004614491565b610f01565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016104f0565b34801561058c57600080fd5b506105a061059b366004614555565b610fac565b005b3480156105ae57600080fd5b5061052e611105565b3480156105c357600080fd5b506105a06105d2366004614591565b611193565b3480156105e357600080fd5b506002545b6040519081526020016104f0565b34801561060257600080fd5b506105a061061136600461466f565b611232565b34801561062257600080fd5b506105a06106313660046146b8565b6112b0565b34801561064257600080fd5b5061052e6114eb565b34801561065757600080fd5b506105a0610666366004614491565b6114f8565b34801561067757600080fd5b50601c546104e4906601000000000000900460ff1681565b34801561069b57600080fd5b506105a06106aa366004614591565b6116e3565b3480156106bb57600080fd5b506105a06106ca3660046146d5565b611785565b3480156106db57600080fd5b506105a06106ea36600461466f565b61180c565b3480156106fb57600080fd5b506105e861070a366004614555565b611886565b34801561071b57600080fd5b506104e461072a366004614491565b6119a2565b34801561073b57600080fd5b50601c546104e49065010000000000900460ff1681565b34801561075e57600080fd5b5061052e6119f0565b34801561077357600080fd5b506006546105e8565b6105a06119fd565b34801561079057600080fd5b506105a061079f36600461466f565b611abc565b3480156107b057600080fd5b506105a06107bf366004614491565b611b36565b3480156107d057600080fd5b506104e46107df366004614491565b611d22565b3480156107f057600080fd5b506105a06107ff36600461466f565b611d70565b34801561081057600080fd5b506105a061081f3660046146d5565b611dea565b34801561083057600080fd5b506104e461083f366004614491565b611e05565b34801561085057600080fd5b506105e861085f366004614491565b611e53565b34801561087057600080fd5b50601c546104e49062010000900460ff1681565b34801561089057600080fd5b506105a061089f366004614591565b611eb0565b3480156108b057600080fd5b506105a06108bf366004614591565b611f50565b3480156108d057600080fd5b506105a06108df366004614491565b611ff3565b3480156108f057600080fd5b5061055b6108ff366004614491565b6121d9565b34801561091057600080fd5b50601c546104e490610100900460ff1681565b34801561092f57600080fd5b506105e861093e3660046146b8565b612286565b34801561094f57600080fd5b506105a0612385565b34801561096457600080fd5b5061052e6123f8565b34801561097957600080fd5b5061098d6109883660046146b8565b612405565b6040516104f09190614716565b3480156109a657600080fd5b5061055b6109b5366004614491565b6124ff565b3480156109c657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661055b565b3480156109f157600080fd5b5061052e61253c565b348015610a0657600080fd5b506105e8610a153660046146b8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b348015610a4957600080fd5b506105a0610a5836600461466f565b61254b565b348015610a6957600080fd5b506105a0610a7836600461475a565b6125c5565b348015610a8957600080fd5b50601c546104e490640100000000900460ff1681565b348015610aab57600080fd5b506105a0610aba36600461466f565b6126c2565b348015610acb57600080fd5b506105a0610ada366004614491565b61273c565b348015610aeb57600080fd5b506105a0610afa36600461466f565b612929565b348015610b0b57600080fd5b50601c546104e49060ff1681565b348015610b2557600080fd5b506104e4610b34366004614491565b6129a3565b348015610b4557600080fd5b506105a0610b5436600461478f565b6129f1565b348015610b6557600080fd5b506105a0610b74366004614591565b612a7f565b348015610b8557600080fd5b5061052e610b94366004614491565b612b17565b348015610ba557600080fd5b506105a0612c2b565b348015610bba57600080fd5b506105e8610bc93660046146b8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b348015610bfd57600080fd5b506104e4610c0c366004614491565b612cae565b348015610c1d57600080fd5b506104e4610c2c366004614491565b612cfc565b348015610c3d57600080fd5b506105a0610c4c366004614491565b612d4a565b348015610c5d57600080fd5b506007546105e8565b348015610c7257600080fd5b5061052e612f3a565b348015610c8757600080fd5b506104e4610c9636600461480f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b348015610cdd57600080fd5b50601c546104e4906301000000900460ff1681565b348015610cfe57600080fd5b5061052e612f47565b348015610d1357600080fd5b506105a0610d22366004614591565b612f54565b348015610d3357600080fd5b506105a0610d42366004614591565b612ff2565b348015610d5357600080fd5b506105a0610d623660046146b8565b613093565b348015610d7357600080fd5b5061052e61318c565b348015610d8857600080fd5b506105a0610d97366004614491565b613199565b348015610da857600080fd5b506105a0610db7366004614491565b613388565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610e125750610e1282613576565b92915050565b6000805b601e54811015610e665782601e8281548110610e3a57610e3a614848565b90600052602060002001541415610e545750600192915050565b80610e5e816148a6565b915050610e1c565b50600092915050565b606060008054610e7e906148df565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaa906148df565b8015610ef75780601f10610ecc57610100808354040283529160200191610ef7565b820191906000526020600020905b815481529060010190602001808311610eda57829003601f168201915b5050505050905090565b6000610f0c82613659565b610f835760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610fb7826121d9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561105b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610f7a565b3373ffffffffffffffffffffffffffffffffffffffff8216148061108457506110848133610c96565b6110f65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610f7a565b61110083836136bd565b505050565b600c8054611112906148df565b80601f016020809104026020016040519081016040528092919081815260200182805461113e906148df565b801561118b5780601f106111605761010080835404028352916020019161118b565b820191906000526020600020905b81548152906001019060200180831161116e57829003601f168201915b505050505081565b60055473ffffffffffffffffffffffffffffffffffffffff1633146111fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac9060129060208401906143b6565b5050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600860205260409020546113485760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610f7a565b6000600754476113589190614933565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020908152604080832054600654600890935290832054939450919261139c908561494b565b6113a691906149b7565b6113b091906149cb565b9050806114255760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610f7a565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902054611456908290614933565b73ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205560075461148a908290614933565b600755611497838261375d565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b600d8054611112906148df565b600061150360025490565b601c54909150610100900460ff1661155d5760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa1580156115cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f091906149e2565b73ffffffffffffffffffffffffffffffffffffffff16146116535760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b61165c826119a2565b1561166657600080fd5b611680338260405180602001604052806000815250613883565b601f805460018181019092557fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d80701919091556020805491820181556000527fc97bfaf2f8ee708c303a06d134f5ecd8389ae0432af62dc132a24118292866bb0155565b60055473ffffffffffffffffffffffffffffffffffffffff16331461174a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c805491151565010000000000027fffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffff909216919091179055565b61178f338261390c565b6118015760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610f7a565b611100838383613a48565b60055473ffffffffffffffffffffffffffffffffffffffff1633146118735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac9060119060208401906143b6565b600061189183612286565b82106118df5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610f7a565b6000805b600254811015611959576002818154811061190057611900614848565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff86811691161415611949578382141561193d579150610e129050565b611946826148a6565b91505b611952816148a6565b90506118e3565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610f7a565b6000805b602054811015610e665782602082815481106119c4576119c4614848565b906000526020600020015414156119de5750600192915050565b806119e8816148a6565b9150506119a6565b60108054611112906148df565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b604051600090339047908381818185875af1925050503d8060008114611aa6576040519150601f19603f3d011682016040523d82523d6000602084013e611aab565b606091505b5050905080611ab957600080fd5b50565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac90600f9060208401906143b6565b6000611b4160025490565b601c5490915062010000900460ff16611b9c5760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015611c0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c2f91906149e2565b73ffffffffffffffffffffffffffffffffffffffff1614611c925760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b611c9b82611e05565b15611ca557600080fd5b611cbf338260405180602001604052806000815250613883565b6021805460018181019092557f3a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b57001919091556022805491820181556000527f61035b26e3e9eee00e0d72fd1ee8ddca6894550dca6916ea2ac6baa90d11e5100155565b6000805b602454811015610e66578260248281548110611d4457611d44614848565b90600052602060002001541415611d5e5750600192915050565b80611d68816148a6565b915050611d26565b60055473ffffffffffffffffffffffffffffffffffffffff163314611dd75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac90600e9060208401906143b6565b611100838383604051806020016040528060008152506129f1565b6000805b602254811015610e66578260228281548110611e2757611e27614848565b90600052602060002001541415611e415750600192915050565b80611e4b816148a6565b915050611e09565b6000611e5e60025490565b8210611eac5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610f7a565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c80549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611fb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c80549115156601000000000000027fffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffff909216919091179055565b6000611ffe60025490565b601c5490915060ff166120535760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa1580156120c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e691906149e2565b73ffffffffffffffffffffffffffffffffffffffff16146121495760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b61215282610e18565b1561215c57600080fd5b612176338260405180602001604052806000815250613883565b601d805460018181019092557f6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f0191909155601e805491820181556000527f50bb669a95c7b50b7e8a6f09454034b2b14cf2b85c730dca9a539ca82cb6e3500155565b600080600283815481106121ef576121ef614848565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610e125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610f7a565b600073ffffffffffffffffffffffffffffffffffffffff82166123115760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610f7a565b600254600090815b8181101561237c576002818154811061233457612334614848565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff8681169116141561236c57612369836148a6565b92505b612375816148a6565b9050612319565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146123ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b6123f66000613c17565b565b600f8054611112906148df565b606061241082612286565b60001061245f5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610f7a565b600061246a83612286565b905060008167ffffffffffffffff811115612487576124876145ac565b6040519080825280602002602001820160405280156124b0578160200160208202803683370190505b50905060005b828110156124f7576124c88582611886565b8282815181106124da576124da614848565b6020908102919091010152806124ef816148a6565b9150506124b6565b509392505050565b6000600a828154811061251457612514614848565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b606060018054610e7e906148df565b60055473ffffffffffffffffffffffffffffffffffffffff1633146125b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac90600c9060208401906143b6565b73ffffffffffffffffffffffffffffffffffffffff821633141561262b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f7a565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146127295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac90600d9060208401906143b6565b600061274760025490565b601c549091506301000000900460ff166127a35760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015612812573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061283691906149e2565b73ffffffffffffffffffffffffffffffffffffffff16146128995760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b6128a282611d22565b156128ac57600080fd5b6128c6338260405180602001604052806000815250613883565b6023805460018181019092557fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f423001919091556024805491820181556000527f7cd332d19b93bcabe3cce7ca0c18a052f57e5fd03b4758a09f30f5ddc4b22ec40155565b60055473ffffffffffffffffffffffffffffffffffffffff1633146129905760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac9060109060208401906143b6565b6000805b602654811015610e665782602682815481106129c5576129c5614848565b906000526020600020015414156129df5750600192915050565b806129e9816148a6565b9150506129a7565b6129fb338361390c565b612a6d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610f7a565b612a7984848484613c8e565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612ae65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6060612b2282613659565b612b2b57600080fd5b81612b8c576000612b3a613d17565b90506000815111612b5a5760405180602001604052806000815250612b85565b80612b6484613d26565b604051602001612b759291906149ff565b6040516020818303038152906040525b9392505050565b612b9582613e58565b15612ba4576000612b3a613d17565b612bad82613ea6565b15612bbc576000612b3a613ef4565b612bc582613f03565b15612bd4576000612b3a613f51565b612bdd82613f60565b15612bec576000612b3a613fae565b612bf582613fbd565b15612c04576000612b3a61400b565b612c0d8261401a565b15612c1c576000612b3a614068565b6000612b3a614077565b919050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612c925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b6000611ab9338260405180602001604052806000815250613883565b6000805b602854811015610e66578260288281548110612cd057612cd0614848565b90600052602060002001541415612cea5750600192915050565b80612cf4816148a6565b915050612cb2565b6000805b602a54811015610e665782602a8281548110612d1e57612d1e614848565b90600052602060002001541415612d385750600192915050565b80612d42816148a6565b915050612d00565b6000612d5560025490565b601c549091506601000000000000900460ff16612db45760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015612e23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e4791906149e2565b73ffffffffffffffffffffffffffffffffffffffff1614612eaa5760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b612eb382612cfc565b15612ebd57600080fd5b612ed7338260405180602001604052806000815250613883565b6029805460018181019092557fcb7c14ce178f56e2e8d86ab33ebc0ae081ba8556a00cd122038841867181caac0191909155602a805491820181556000527fbeced09521047d05b8960b7e7bcc1d1292cf3e4b2a6b63f48335cbde5f7545d20155565b60118054611112906148df565b60128054611112906148df565b60055473ffffffffffffffffffffffffffffffffffffffff163314612fbb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146130595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c8054911515640100000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146130fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b73ffffffffffffffffffffffffffffffffffffffff81166131835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610f7a565b611ab981613c17565b600e8054611112906148df565b60006131a460025490565b601c5490915065010000000000900460ff166132025760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015613271573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061329591906149e2565b73ffffffffffffffffffffffffffffffffffffffff16146132f85760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b61330182612cae565b1561330b57600080fd5b613325338260405180602001604052806000815250613883565b6027805460018181019092557f98a476f1687bc3d60a2da2adbcba2c46958e61fa2fb4042cd7bc5816a710195b01919091556028805491820181556000527fe16da923a2d88192e5070f37b4571d58682c0d66212ec634d495f33de3f77ab50155565b600061339360025490565b601c54909150640100000000900460ff166133f05760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa15801561345f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061348391906149e2565b73ffffffffffffffffffffffffffffffffffffffff16146134e65760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b6134ef826129a3565b156134f957600080fd5b613513338260405180602001604052806000815250613883565b6025805460018181019092557f401968ff42a154441da5f6c4c935ac46b8671f0e062baaa62a7545ba53bb6e4c01919091556026805491820181556000527f744a2cf8fd7008e3d53b67916e73460df9fa5214e3ef23dd4259ca09493a35940155565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061360957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610e1257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610e12565b60025460009082108015610e125750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061369357613693614848565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190613717826121d9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156137ad5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610f7a565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114613807576040519150601f19603f3d011682016040523d82523d6000602084013e61380c565b606091505b50509050806111005760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610f7a565b61388d8383614086565b61389a60008484846141e0565b6111005760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610f7a565b600061391782613659565b6139895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610f7a565b6000613994836121d9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613a0357508373ffffffffffffffffffffffffffffffffffffffff166139eb84610f01565b73ffffffffffffffffffffffffffffffffffffffff16145b80613a40575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16613a68826121d9565b73ffffffffffffffffffffffffffffffffffffffff1614613af15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610f7a565b73ffffffffffffffffffffffffffffffffffffffff8216613b795760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610f7a565b613b846000826136bd565b8160028281548110613b9857613b98614848565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b613c99848484613a48565b613ca5848484846141e0565b612a795760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610f7a565b6060600c8054610e7e906148df565b606081613d6657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613d905780613d7a816148a6565b9150613d899050600a836149b7565b9150613d6a565b60008167ffffffffffffffff811115613dab57613dab6145ac565b6040519080825280601f01601f191660200182016040528015613dd5576020820181803683370190505b5090505b8415613a4057613dea6001836149cb565b9150613df7600a86614a2e565b613e02906030614933565b60f81b818381518110613e1757613e17614848565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613e51600a866149b7565b9450613dd9565b6000805b601d54811015610e665782601d8281548110613e7a57613e7a614848565b90600052602060002001541415613e945750600192915050565b80613e9e816148a6565b915050613e5c565b6000805b601f54811015610e665782601f8281548110613ec857613ec8614848565b90600052602060002001541415613ee25750600192915050565b80613eec816148a6565b915050613eaa565b6060600d8054610e7e906148df565b6000805b602154811015610e66578260218281548110613f2557613f25614848565b90600052602060002001541415613f3f5750600192915050565b80613f49816148a6565b915050613f07565b6060600e8054610e7e906148df565b6000805b602354811015610e66578260238281548110613f8257613f82614848565b90600052602060002001541415613f9c5750600192915050565b80613fa6816148a6565b915050613f64565b6060600f8054610e7e906148df565b6000805b602554811015610e66578260258281548110613fdf57613fdf614848565b90600052602060002001541415613ff95750600192915050565b80614003816148a6565b915050613fc1565b606060108054610e7e906148df565b6000805b602754811015610e6657826027828154811061403c5761403c614848565b906000526020600020015414156140565750600192915050565b80614060816148a6565b91505061401e565b606060118054610e7e906148df565b606060128054610e7e906148df565b73ffffffffffffffffffffffffffffffffffffffff82166140e95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f7a565b6140f281613659565b1561413f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f7a565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b156143ab576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290614257903390899088908890600401614a42565b6020604051808303816000875af19250505080156142b0575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526142ad91810190614a8b565b60015b614360573d8080156142de576040519150601f19603f3d011682016040523d82523d6000602084013e6142e3565b606091505b5080516143585760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610f7a565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613a40565b506001949350505050565b8280546143c2906148df565b90600052602060002090601f0160209004810192826143e4576000855561442a565b82601f106143fd57805160ff191683800117855561442a565b8280016001018555821561442a579182015b8281111561442a57825182559160200191906001019061440f565b50611eac9291505b80821115611eac5760008155600101614432565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611ab957600080fd5b60006020828403121561448657600080fd5b8135612b8581614446565b6000602082840312156144a357600080fd5b5035919050565b60005b838110156144c55781810151838201526020016144ad565b83811115612a795750506000910152565b600081518084526144ee8160208601602086016144aa565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000612b8560208301846144d6565b73ffffffffffffffffffffffffffffffffffffffff81168114611ab957600080fd5b6000806040838503121561456857600080fd5b823561457381614533565b946020939093013593505050565b80358015158114612c2657600080fd5b6000602082840312156145a357600080fd5b612b8582614581565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156145f6576145f66145ac565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561463c5761463c6145ac565b8160405280935085815286868601111561465557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561468157600080fd5b813567ffffffffffffffff81111561469857600080fd5b8201601f810184136146a957600080fd5b613a40848235602084016145db565b6000602082840312156146ca57600080fd5b8135612b8581614533565b6000806000606084860312156146ea57600080fd5b83356146f581614533565b9250602084013561470581614533565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b8181101561474e57835183529284019291840191600101614732565b50909695505050505050565b6000806040838503121561476d57600080fd5b823561477881614533565b915061478660208401614581565b90509250929050565b600080600080608085870312156147a557600080fd5b84356147b081614533565b935060208501356147c081614533565b925060408501359150606085013567ffffffffffffffff8111156147e357600080fd5b8501601f810187136147f457600080fd5b614803878235602084016145db565b91505092959194509250565b6000806040838503121561482257600080fd5b823561482d81614533565b9150602083013561483d81614533565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148d8576148d8614877565b5060010190565b600181811c908216806148f357607f821691505b6020821081141561492d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000821982111561494657614946614877565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561498357614983614877565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826149c6576149c6614988565b500490565b6000828210156149dd576149dd614877565b500390565b6000602082840312156149f457600080fd5b8151612b8581614533565b60008351614a118184602088016144aa565b835190830190614a258183602088016144aa565b01949350505050565b600082614a3d57614a3d614988565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152614a8160808301846144d6565b9695505050505050565b600060208284031215614a9d57600080fd5b8151612b858161444656fea2646970667358221220cac13f90c819867fbfa1a01c0c80c4abc00cec3f0c44d0b43ea494820ba5fc3464736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e90b0ed5687770659ca1ca76026bdd9cb38635890000000000000000000000000000000000000000000000000000000000000012454747544f4d41544f4e534f524947494e5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003454f520000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106104695760003560e01c806370a0823111610243578063c4bd830c11610143578063e985e9c5116100bb578063ef45bdd51161008a578063f8449b151161006f578063f8449b1514610d67578063f94872a014610d7c578063ff1f5c2c14610d9c57600080fd5b8063ef45bdd514610d27578063f2fde38b14610d4757600080fd5b8063e985e9c514610c7b578063eac6d65b14610cd1578063ec08cdc214610cf2578063ed5906ae14610d0757600080fd5b8063d824e1a811610112578063e13d85db116100f7578063e13d85db14610c31578063e33b7de314610c51578063e6ceb34d14610c6657600080fd5b8063d824e1a814610bf1578063da70d03514610c1157600080fd5b8063c4bd830c14610b59578063c87b56dd14610b79578063cb774d4714610b99578063ce7c2ac214610bae57600080fd5b80639dcc314f116101d6578063a61b4c70116101a5578063ac54cec21161018a578063ac54cec214610aff578063b20b0b2414610b19578063b88d4fde14610b3957600080fd5b8063a61b4c7014610abf578063a75d8d3c14610adf57600080fd5b80639dcc314f14610a3d578063a22cb46514610a5d578063a240cd5c14610a7d578063a30ed58314610a9f57600080fd5b80638b83209b116102125780638b83209b1461099a5780638da5cb5b146109ba57806395d89b41146109e55780639852595c146109fa57600080fd5b806370a0823114610923578063715018a61461094357806376b58039146109585780638462151c1461096d57600080fd5b806331e98a6f1161036957806342842e0e116102e1578063528a3dd0116102b05780635e8ae2a3116102955780635e8ae2a3146108c45780636352211e146108e45780636d7884871461090457600080fd5b8063528a3dd0146108845780635e493c15146108a457600080fd5b806342842e0e146108045780634dd1dbf2146108245780634f6ccce714610844578063527602301461086457600080fd5b80633ccfd60b116103385780633ec4ead21161031d5780633ec4ead2146107a4578063400c2d89146107c457806340327c30146107e457600080fd5b80633ccfd60b1461077c5780633e20f9b91461078457600080fd5b806331e98a6f1461070f57806338e73f701461072f5780633a043ef0146107525780633a98ef391461076757600080fd5b806318f6584c116103fc5780631e77ed75116103cb57806323b872dd116103b057806323b872dd146106af57806323f80ccd146106cf5780632f745c59146106ef57600080fd5b80631e77ed751461066b578063222ff7cf1461068f57600080fd5b806318f6584c146105f6578063191655871461061657806319b74247146106365780631c5a3e2b1461064b57600080fd5b8063095ea7b311610438578063095ea7b3146105805780630aaf0c2e146105a25780630fefac0d146105b757806318160ddd146105d757600080fd5b806301ffc9a7146104c457806306567129146104f957806306fdde0314610519578063081812fc1461053b57600080fd5b366104bf577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b3480156104d057600080fd5b506104e46104df366004614474565b610dbc565b60405190151581526020015b60405180910390f35b34801561050557600080fd5b506104e4610514366004614491565b610e18565b34801561052557600080fd5b5061052e610e6f565b6040516104f09190614520565b34801561054757600080fd5b5061055b610556366004614491565b610f01565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016104f0565b34801561058c57600080fd5b506105a061059b366004614555565b610fac565b005b3480156105ae57600080fd5b5061052e611105565b3480156105c357600080fd5b506105a06105d2366004614591565b611193565b3480156105e357600080fd5b506002545b6040519081526020016104f0565b34801561060257600080fd5b506105a061061136600461466f565b611232565b34801561062257600080fd5b506105a06106313660046146b8565b6112b0565b34801561064257600080fd5b5061052e6114eb565b34801561065757600080fd5b506105a0610666366004614491565b6114f8565b34801561067757600080fd5b50601c546104e4906601000000000000900460ff1681565b34801561069b57600080fd5b506105a06106aa366004614591565b6116e3565b3480156106bb57600080fd5b506105a06106ca3660046146d5565b611785565b3480156106db57600080fd5b506105a06106ea36600461466f565b61180c565b3480156106fb57600080fd5b506105e861070a366004614555565b611886565b34801561071b57600080fd5b506104e461072a366004614491565b6119a2565b34801561073b57600080fd5b50601c546104e49065010000000000900460ff1681565b34801561075e57600080fd5b5061052e6119f0565b34801561077357600080fd5b506006546105e8565b6105a06119fd565b34801561079057600080fd5b506105a061079f36600461466f565b611abc565b3480156107b057600080fd5b506105a06107bf366004614491565b611b36565b3480156107d057600080fd5b506104e46107df366004614491565b611d22565b3480156107f057600080fd5b506105a06107ff36600461466f565b611d70565b34801561081057600080fd5b506105a061081f3660046146d5565b611dea565b34801561083057600080fd5b506104e461083f366004614491565b611e05565b34801561085057600080fd5b506105e861085f366004614491565b611e53565b34801561087057600080fd5b50601c546104e49062010000900460ff1681565b34801561089057600080fd5b506105a061089f366004614591565b611eb0565b3480156108b057600080fd5b506105a06108bf366004614591565b611f50565b3480156108d057600080fd5b506105a06108df366004614491565b611ff3565b3480156108f057600080fd5b5061055b6108ff366004614491565b6121d9565b34801561091057600080fd5b50601c546104e490610100900460ff1681565b34801561092f57600080fd5b506105e861093e3660046146b8565b612286565b34801561094f57600080fd5b506105a0612385565b34801561096457600080fd5b5061052e6123f8565b34801561097957600080fd5b5061098d6109883660046146b8565b612405565b6040516104f09190614716565b3480156109a657600080fd5b5061055b6109b5366004614491565b6124ff565b3480156109c657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff1661055b565b3480156109f157600080fd5b5061052e61253c565b348015610a0657600080fd5b506105e8610a153660046146b8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b348015610a4957600080fd5b506105a0610a5836600461466f565b61254b565b348015610a6957600080fd5b506105a0610a7836600461475a565b6125c5565b348015610a8957600080fd5b50601c546104e490640100000000900460ff1681565b348015610aab57600080fd5b506105a0610aba36600461466f565b6126c2565b348015610acb57600080fd5b506105a0610ada366004614491565b61273c565b348015610aeb57600080fd5b506105a0610afa36600461466f565b612929565b348015610b0b57600080fd5b50601c546104e49060ff1681565b348015610b2557600080fd5b506104e4610b34366004614491565b6129a3565b348015610b4557600080fd5b506105a0610b5436600461478f565b6129f1565b348015610b6557600080fd5b506105a0610b74366004614591565b612a7f565b348015610b8557600080fd5b5061052e610b94366004614491565b612b17565b348015610ba557600080fd5b506105a0612c2b565b348015610bba57600080fd5b506105e8610bc93660046146b8565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b348015610bfd57600080fd5b506104e4610c0c366004614491565b612cae565b348015610c1d57600080fd5b506104e4610c2c366004614491565b612cfc565b348015610c3d57600080fd5b506105a0610c4c366004614491565b612d4a565b348015610c5d57600080fd5b506007546105e8565b348015610c7257600080fd5b5061052e612f3a565b348015610c8757600080fd5b506104e4610c9636600461480f565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b348015610cdd57600080fd5b50601c546104e4906301000000900460ff1681565b348015610cfe57600080fd5b5061052e612f47565b348015610d1357600080fd5b506105a0610d22366004614591565b612f54565b348015610d3357600080fd5b506105a0610d42366004614591565b612ff2565b348015610d5357600080fd5b506105a0610d623660046146b8565b613093565b348015610d7357600080fd5b5061052e61318c565b348015610d8857600080fd5b506105a0610d97366004614491565b613199565b348015610da857600080fd5b506105a0610db7366004614491565b613388565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610e125750610e1282613576565b92915050565b6000805b601e54811015610e665782601e8281548110610e3a57610e3a614848565b90600052602060002001541415610e545750600192915050565b80610e5e816148a6565b915050610e1c565b50600092915050565b606060008054610e7e906148df565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaa906148df565b8015610ef75780601f10610ecc57610100808354040283529160200191610ef7565b820191906000526020600020905b815481529060010190602001808311610eda57829003601f168201915b5050505050905090565b6000610f0c82613659565b610f835760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610fb7826121d9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561105b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610f7a565b3373ffffffffffffffffffffffffffffffffffffffff8216148061108457506110848133610c96565b6110f65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610f7a565b61110083836136bd565b505050565b600c8054611112906148df565b80601f016020809104026020016040519081016040528092919081815260200182805461113e906148df565b801561118b5780601f106111605761010080835404028352916020019161118b565b820191906000526020600020905b81548152906001019060200180831161116e57829003601f168201915b505050505081565b60055473ffffffffffffffffffffffffffffffffffffffff1633146111fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112995760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac9060129060208401906143b6565b5050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600860205260409020546113485760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610f7a565b6000600754476113589190614933565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020908152604080832054600654600890935290832054939450919261139c908561494b565b6113a691906149b7565b6113b091906149cb565b9050806114255760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610f7a565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260096020526040902054611456908290614933565b73ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205560075461148a908290614933565b600755611497838261375d565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b600d8054611112906148df565b600061150360025490565b601c54909150610100900460ff1661155d5760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa1580156115cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115f091906149e2565b73ffffffffffffffffffffffffffffffffffffffff16146116535760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b61165c826119a2565b1561166657600080fd5b611680338260405180602001604052806000815250613883565b601f805460018181019092557fa03837a25210ee280c2113ff4b77ca23440b19d4866cca721c801278fd08d80701919091556020805491820181556000527fc97bfaf2f8ee708c303a06d134f5ecd8389ae0432af62dc132a24118292866bb0155565b60055473ffffffffffffffffffffffffffffffffffffffff16331461174a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c805491151565010000000000027fffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffff909216919091179055565b61178f338261390c565b6118015760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610f7a565b611100838383613a48565b60055473ffffffffffffffffffffffffffffffffffffffff1633146118735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac9060119060208401906143b6565b600061189183612286565b82106118df5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610f7a565b6000805b600254811015611959576002818154811061190057611900614848565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff86811691161415611949578382141561193d579150610e129050565b611946826148a6565b91505b611952816148a6565b90506118e3565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610f7a565b6000805b602054811015610e665782602082815481106119c4576119c4614848565b906000526020600020015414156119de5750600192915050565b806119e8816148a6565b9150506119a6565b60108054611112906148df565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a645760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b604051600090339047908381818185875af1925050503d8060008114611aa6576040519150601f19603f3d011682016040523d82523d6000602084013e611aab565b606091505b5050905080611ab957600080fd5b50565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac90600f9060208401906143b6565b6000611b4160025490565b601c5490915062010000900460ff16611b9c5760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015611c0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c2f91906149e2565b73ffffffffffffffffffffffffffffffffffffffff1614611c925760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b611c9b82611e05565b15611ca557600080fd5b611cbf338260405180602001604052806000815250613883565b6021805460018181019092557f3a6357012c1a3ae0a17d304c9920310382d968ebcc4b1771f41c6b304205b57001919091556022805491820181556000527f61035b26e3e9eee00e0d72fd1ee8ddca6894550dca6916ea2ac6baa90d11e5100155565b6000805b602454811015610e66578260248281548110611d4457611d44614848565b90600052602060002001541415611d5e5750600192915050565b80611d68816148a6565b915050611d26565b60055473ffffffffffffffffffffffffffffffffffffffff163314611dd75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac90600e9060208401906143b6565b611100838383604051806020016040528060008152506129f1565b6000805b602254811015610e66578260228281548110611e2757611e27614848565b90600052602060002001541415611e415750600192915050565b80611e4b816148a6565b915050611e09565b6000611e5e60025490565b8210611eac5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610f7a565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff163314611f175760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c80549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611fb75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c80549115156601000000000000027fffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffff909216919091179055565b6000611ffe60025490565b601c5490915060ff166120535760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa1580156120c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e691906149e2565b73ffffffffffffffffffffffffffffffffffffffff16146121495760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b61215282610e18565b1561215c57600080fd5b612176338260405180602001604052806000815250613883565b601d805460018181019092557f6d4407e7be21f808e6509aa9fa9143369579dd7d760fe20a2c09680fc146134f0191909155601e805491820181556000527f50bb669a95c7b50b7e8a6f09454034b2b14cf2b85c730dca9a539ca82cb6e3500155565b600080600283815481106121ef576121ef614848565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610e125760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610f7a565b600073ffffffffffffffffffffffffffffffffffffffff82166123115760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610f7a565b600254600090815b8181101561237c576002818154811061233457612334614848565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff8681169116141561236c57612369836148a6565b92505b612375816148a6565b9050612319565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146123ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b6123f66000613c17565b565b600f8054611112906148df565b606061241082612286565b60001061245f5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610f7a565b600061246a83612286565b905060008167ffffffffffffffff811115612487576124876145ac565b6040519080825280602002602001820160405280156124b0578160200160208202803683370190505b50905060005b828110156124f7576124c88582611886565b8282815181106124da576124da614848565b6020908102919091010152806124ef816148a6565b9150506124b6565b509392505050565b6000600a828154811061251457612514614848565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b606060018054610e7e906148df565b60055473ffffffffffffffffffffffffffffffffffffffff1633146125b25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac90600c9060208401906143b6565b73ffffffffffffffffffffffffffffffffffffffff821633141561262b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610f7a565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146127295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac90600d9060208401906143b6565b600061274760025490565b601c549091506301000000900460ff166127a35760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015612812573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061283691906149e2565b73ffffffffffffffffffffffffffffffffffffffff16146128995760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b6128a282611d22565b156128ac57600080fd5b6128c6338260405180602001604052806000815250613883565b6023805460018181019092557fd57b2b5166478fd4318d2acc6cc2c704584312bdd8781b32d5d06abda57f423001919091556024805491820181556000527f7cd332d19b93bcabe3cce7ca0c18a052f57e5fd03b4758a09f30f5ddc4b22ec40155565b60055473ffffffffffffffffffffffffffffffffffffffff1633146129905760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b80516112ac9060109060208401906143b6565b6000805b602654811015610e665782602682815481106129c5576129c5614848565b906000526020600020015414156129df5750600192915050565b806129e9816148a6565b9150506129a7565b6129fb338361390c565b612a6d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610f7a565b612a7984848484613c8e565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612ae65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6060612b2282613659565b612b2b57600080fd5b81612b8c576000612b3a613d17565b90506000815111612b5a5760405180602001604052806000815250612b85565b80612b6484613d26565b604051602001612b759291906149ff565b6040516020818303038152906040525b9392505050565b612b9582613e58565b15612ba4576000612b3a613d17565b612bad82613ea6565b15612bbc576000612b3a613ef4565b612bc582613f03565b15612bd4576000612b3a613f51565b612bdd82613f60565b15612bec576000612b3a613fae565b612bf582613fbd565b15612c04576000612b3a61400b565b612c0d8261401a565b15612c1c576000612b3a614068565b6000612b3a614077565b919050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612c925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b6000611ab9338260405180602001604052806000815250613883565b6000805b602854811015610e66578260288281548110612cd057612cd0614848565b90600052602060002001541415612cea5750600192915050565b80612cf4816148a6565b915050612cb2565b6000805b602a54811015610e665782602a8281548110612d1e57612d1e614848565b90600052602060002001541415612d385750600192915050565b80612d42816148a6565b915050612d00565b6000612d5560025490565b601c549091506601000000000000900460ff16612db45760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015612e23573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e4791906149e2565b73ffffffffffffffffffffffffffffffffffffffff1614612eaa5760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b612eb382612cfc565b15612ebd57600080fd5b612ed7338260405180602001604052806000815250613883565b6029805460018181019092557fcb7c14ce178f56e2e8d86ab33ebc0ae081ba8556a00cd122038841867181caac0191909155602a805491820181556000527fbeced09521047d05b8960b7e7bcc1d1292cf3e4b2a6b63f48335cbde5f7545d20155565b60118054611112906148df565b60128054611112906148df565b60055473ffffffffffffffffffffffffffffffffffffffff163314612fbb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146130595760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b601c8054911515640100000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146130fa5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f7a565b73ffffffffffffffffffffffffffffffffffffffff81166131835760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610f7a565b611ab981613c17565b600e8054611112906148df565b60006131a460025490565b601c5490915065010000000000900460ff166132025760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa158015613271573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061329591906149e2565b73ffffffffffffffffffffffffffffffffffffffff16146132f85760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b61330182612cae565b1561330b57600080fd5b613325338260405180602001604052806000815250613883565b6027805460018181019092557f98a476f1687bc3d60a2da2adbcba2c46958e61fa2fb4042cd7bc5816a710195b01919091556028805491820181556000527fe16da923a2d88192e5070f37b4571d58682c0d66212ec634d495f33de3f77ab50155565b600061339360025490565b601c54909150640100000000900460ff166133f05760405162461bcd60e51b815260206004820152601760248201527f4d696e742070617373206973206e6f74206163746976650000000000000000006044820152606401610f7a565b6013546040517f6352211e00000000000000000000000000000000000000000000000000000000815260048101849052339173ffffffffffffffffffffffffffffffffffffffff1690636352211e90602401602060405180830381865afa15801561345f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061348391906149e2565b73ffffffffffffffffffffffffffffffffffffffff16146134e65760405162461bcd60e51b815260206004820152601860248201527f596f7520646f6e2774206f776e207468697320746f6b656e00000000000000006044820152606401610f7a565b6134ef826129a3565b156134f957600080fd5b613513338260405180602001604052806000815250613883565b6025805460018181019092557f401968ff42a154441da5f6c4c935ac46b8671f0e062baaa62a7545ba53bb6e4c01919091556026805491820181556000527f744a2cf8fd7008e3d53b67916e73460df9fa5214e3ef23dd4259ca09493a35940155565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061360957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610e1257507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610e12565b60025460009082108015610e125750600073ffffffffffffffffffffffffffffffffffffffff166002838154811061369357613693614848565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190613717826121d9565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156137ad5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610f7a565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114613807576040519150601f19603f3d011682016040523d82523d6000602084013e61380c565b606091505b50509050806111005760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610f7a565b61388d8383614086565b61389a60008484846141e0565b6111005760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610f7a565b600061391782613659565b6139895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610f7a565b6000613994836121d9565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480613a0357508373ffffffffffffffffffffffffffffffffffffffff166139eb84610f01565b73ffffffffffffffffffffffffffffffffffffffff16145b80613a40575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16613a68826121d9565b73ffffffffffffffffffffffffffffffffffffffff1614613af15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610f7a565b73ffffffffffffffffffffffffffffffffffffffff8216613b795760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610f7a565b613b846000826136bd565b8160028281548110613b9857613b98614848565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b613c99848484613a48565b613ca5848484846141e0565b612a795760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610f7a565b6060600c8054610e7e906148df565b606081613d6657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613d905780613d7a816148a6565b9150613d899050600a836149b7565b9150613d6a565b60008167ffffffffffffffff811115613dab57613dab6145ac565b6040519080825280601f01601f191660200182016040528015613dd5576020820181803683370190505b5090505b8415613a4057613dea6001836149cb565b9150613df7600a86614a2e565b613e02906030614933565b60f81b818381518110613e1757613e17614848565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350613e51600a866149b7565b9450613dd9565b6000805b601d54811015610e665782601d8281548110613e7a57613e7a614848565b90600052602060002001541415613e945750600192915050565b80613e9e816148a6565b915050613e5c565b6000805b601f54811015610e665782601f8281548110613ec857613ec8614848565b90600052602060002001541415613ee25750600192915050565b80613eec816148a6565b915050613eaa565b6060600d8054610e7e906148df565b6000805b602154811015610e66578260218281548110613f2557613f25614848565b90600052602060002001541415613f3f5750600192915050565b80613f49816148a6565b915050613f07565b6060600e8054610e7e906148df565b6000805b602354811015610e66578260238281548110613f8257613f82614848565b90600052602060002001541415613f9c5750600192915050565b80613fa6816148a6565b915050613f64565b6060600f8054610e7e906148df565b6000805b602554811015610e66578260258281548110613fdf57613fdf614848565b90600052602060002001541415613ff95750600192915050565b80614003816148a6565b915050613fc1565b606060108054610e7e906148df565b6000805b602754811015610e6657826027828154811061403c5761403c614848565b906000526020600020015414156140565750600192915050565b80614060816148a6565b91505061401e565b606060118054610e7e906148df565b606060128054610e7e906148df565b73ffffffffffffffffffffffffffffffffffffffff82166140e95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610f7a565b6140f281613659565b1561413f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610f7a565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b156143ab576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290614257903390899088908890600401614a42565b6020604051808303816000875af19250505080156142b0575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526142ad91810190614a8b565b60015b614360573d8080156142de576040519150601f19603f3d011682016040523d82523d6000602084013e6142e3565b606091505b5080516143585760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610f7a565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050613a40565b506001949350505050565b8280546143c2906148df565b90600052602060002090601f0160209004810192826143e4576000855561442a565b82601f106143fd57805160ff191683800117855561442a565b8280016001018555821561442a579182015b8281111561442a57825182559160200191906001019061440f565b50611eac9291505b80821115611eac5760008155600101614432565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611ab957600080fd5b60006020828403121561448657600080fd5b8135612b8581614446565b6000602082840312156144a357600080fd5b5035919050565b60005b838110156144c55781810151838201526020016144ad565b83811115612a795750506000910152565b600081518084526144ee8160208601602086016144aa565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000612b8560208301846144d6565b73ffffffffffffffffffffffffffffffffffffffff81168114611ab957600080fd5b6000806040838503121561456857600080fd5b823561457381614533565b946020939093013593505050565b80358015158114612c2657600080fd5b6000602082840312156145a357600080fd5b612b8582614581565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156145f6576145f66145ac565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561463c5761463c6145ac565b8160405280935085815286868601111561465557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561468157600080fd5b813567ffffffffffffffff81111561469857600080fd5b8201601f810184136146a957600080fd5b613a40848235602084016145db565b6000602082840312156146ca57600080fd5b8135612b8581614533565b6000806000606084860312156146ea57600080fd5b83356146f581614533565b9250602084013561470581614533565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b8181101561474e57835183529284019291840191600101614732565b50909695505050505050565b6000806040838503121561476d57600080fd5b823561477881614533565b915061478660208401614581565b90509250929050565b600080600080608085870312156147a557600080fd5b84356147b081614533565b935060208501356147c081614533565b925060408501359150606085013567ffffffffffffffff8111156147e357600080fd5b8501601f810187136147f457600080fd5b614803878235602084016145db565b91505092959194509250565b6000806040838503121561482257600080fd5b823561482d81614533565b9150602083013561483d81614533565b809150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156148d8576148d8614877565b5060010190565b600181811c908216806148f357607f821691505b6020821081141561492d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b6000821982111561494657614946614877565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561498357614983614877565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826149c6576149c6614988565b500490565b6000828210156149dd576149dd614877565b500390565b6000602082840312156149f457600080fd5b8151612b8581614533565b60008351614a118184602088016144aa565b835190830190614a258183602088016144aa565b01949350505050565b600082614a3d57614a3d614988565b500690565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152614a8160808301846144d6565b9695505050505050565b600060208284031215614a9d57600080fd5b8151612b858161444656fea2646970667358221220cac13f90c819867fbfa1a01c0c80c4abc00cec3f0c44d0b43ea494820ba5fc3464736f6c634300080b0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e90b0ed5687770659ca1ca76026bdd9cb38635890000000000000000000000000000000000000000000000000000000000000012454747544f4d41544f4e534f524947494e5300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003454f520000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): EGGTOMATONSORIGINS
Arg [1] : _symbol (string): EOR
Arg [2] : mintpassContractAddress (address): 0xe90B0Ed5687770659ca1CA76026BDD9cB3863589

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000e90b0ed5687770659ca1ca76026bdd9cb3863589
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 454747544f4d41544f4e534f524947494e530000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 454f520000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

482:11311:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2627:40:13;682:10:1;2627:40:13;;;218:42:16;206:55;;;188:74;;2657:9:13;293:2:16;278:18;;271:34;161:18;2627:40:13;;;;;;;482:11311:2;;;;;193:224:5;;;;;;;;;;-1:-1:-1;193:224:5;;;;;:::i;:::-;;:::i;:::-;;;913:14:16;;906:22;888:41;;876:2;861:18;193:224:5;;;;;;;;2396:204:2;;;;;;;;;;-1:-1:-1;2396:204:2;;;;;:::i;:::-;;:::i;1672:100:4:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2305:221::-;;;;;;;;;;-1:-1:-1;2305:221:4;;;;;:::i;:::-;;:::i;:::-;;;2111:42:16;2099:55;;;2081:74;;2069:2;2054:18;2305:221:4;1935:226:16;1888:411:4;;;;;;;;;;-1:-1:-1;1888:411:4;;;;;:::i;:::-;;:::i;:::-;;592:22:2;;;;;;;;;;;;;:::i;10554:83::-;;;;;;;;;;-1:-1:-1;10554:83:2;;;;;:::i;:::-;;:::i;1351:110:5:-;;;;;;;;;;-1:-1:-1;1439:7:5;:14;1351:110;;;3141:25:16;;;3129:2;3114:18;1351:110:5;2995:177:16;11550:90:2;;;;;;;;;;-1:-1:-1;11550:90:2;;;;;:::i;:::-;;:::i;3791:600:13:-;;;;;;;;;;-1:-1:-1;3791:600:13;;;;;:::i;:::-;;:::i;620:22:2:-;;;;;;;;;;;;;:::i;5566:398::-;;;;;;;;;;-1:-1:-1;5566:398:2;;;;;:::i;:::-;;:::i;1504:34::-;;;;;;;;;;-1:-1:-1;1504:34:2;;;;;;;;;;;10809:83;;;;;;;;;;-1:-1:-1;10809:83:2;;;;;:::i;:::-;;:::i;3003:339:4:-;;;;;;;;;;-1:-1:-1;3003:339:4;;;;;:::i;:::-;;:::i;11458:90:2:-;;;;;;;;;;-1:-1:-1;11458:90:2;;;;;:::i;:::-;;:::i;423:499:5:-;;;;;;;;;;-1:-1:-1;423:499:5;;;;;:::i;:::-;;:::i;2801:204:2:-;;;;;;;;;;-1:-1:-1;2801:204:2;;;;;:::i;:::-;;:::i;1467:34::-;;;;;;;;;;-1:-1:-1;1467:34:2;;;;;;;;;;;704:22;;;;;;;;;;;;;:::i;2752:89:13:-;;;;;;;;;;-1:-1:-1;2822:12:13;;2752:89;;11643:148:2;;;:::i;11274:90::-;;;;;;;;;;-1:-1:-1;11274:90:2;;;;;:::i;:::-;;:::i;5979:398::-;;;;;;;;;;-1:-1:-1;5979:398:2;;;;;:::i;:::-;;:::i;3611:204::-;;;;;;;;;;-1:-1:-1;3611:204:2;;;;;:::i;:::-;;:::i;11182:90::-;;;;;;;;;;-1:-1:-1;11182:90:2;;;;;:::i;:::-;;:::i;3348:185:4:-;;;;;;;;;;-1:-1:-1;3348:185:4;;;;;:::i;:::-;;:::i;3206:204:2:-;;;;;;;;;;-1:-1:-1;3206:204:2;;;;;:::i;:::-;;:::i;1467:200:5:-;;;;;;;;;;-1:-1:-1;1467:200:5;;;;;:::i;:::-;;:::i;1356:34:2:-;;;;;;;;;;-1:-1:-1;1356:34:2;;;;;;;;;;;10639:83;;;;;;;;;;-1:-1:-1;10639:83:2;;;;;:::i;:::-;;:::i;10894:::-;;;;;;;;;;-1:-1:-1;10894:83:2;;;;;:::i;:::-;;:::i;5153:398::-;;;;;;;;;;-1:-1:-1;5153:398:2;;;;;:::i;:::-;;:::i;1427:239:4:-;;;;;;;;;;-1:-1:-1;1427:239:4;;;;;:::i;:::-;;:::i;1319:34:2:-;;;;;;;;;;-1:-1:-1;1319:34:2;;;;;;;;;;;1007:414:4;;;;;;;;;;-1:-1:-1;1007:414:4;;;;;:::i;:::-;;:::i;1648:94:12:-;;;;;;;;;;;;;:::i;676:22:2:-;;;;;;;;;;;;;:::i;928:417:5:-;;;;;;;;;;-1:-1:-1;928:417:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3499:98:13:-;;;;;;;;;;-1:-1:-1;3499:98:13;;;;;:::i;:::-;;:::i;997:87:12:-;;;;;;;;;;-1:-1:-1;1070:6:12;;;;997:87;;1778:104:4;;;;;;;;;;;;;:::i;3306:107:13:-;;;;;;;;;;-1:-1:-1;3306:107:13;;;;;:::i;:::-;3388:18;;3362:7;3388:18;;;:9;:18;;;;;;;3306:107;10998:90:2;;;;;;;;;;-1:-1:-1;10998:90:2;;;;;:::i;:::-;;:::i;2532:295:4:-;;;;;;;;;;-1:-1:-1;2532:295:4;;;;;:::i;:::-;;:::i;1430:34:2:-;;;;;;;;;;-1:-1:-1;1430:34:2;;;;;;;;;;;11090:90;;;;;;;;;;-1:-1:-1;11090:90:2;;;;;:::i;:::-;;:::i;6392:398::-;;;;;;;;;;-1:-1:-1;6392:398:2;;;;;:::i;:::-;;:::i;11366:90::-;;;;;;;;;;-1:-1:-1;11366:90:2;;;;;:::i;:::-;;:::i;1282:34::-;;;;;;;;;;-1:-1:-1;1282:34:2;;;;;;;;4016:204;;;;;;;;;;-1:-1:-1;4016:204:2;;;;;:::i;:::-;;:::i;3539:328:4:-;;;;;;;;;;-1:-1:-1;3539:328:4;;;;;:::i;:::-;;:::i;10384:83:2:-;;;;;;;;;;-1:-1:-1;10384:83:2;;;;;:::i;:::-;;:::i;8795:1586::-;;;;;;;;;;-1:-1:-1;8795:1586:2;;;;;:::i;:::-;;:::i;5036:102::-;;;;;;;;;;;;;:::i;3109:103:13:-;;;;;;;;;;-1:-1:-1;3109:103:13;;;;;:::i;:::-;3189:16;;3163:7;3189:16;;;:7;:16;;;;;;;3109:103;4422:204:2;;;;;;;;;;-1:-1:-1;4422:204:2;;;;;:::i;:::-;;:::i;4827:::-;;;;;;;;;;-1:-1:-1;4827:204:2;;;;;:::i;:::-;;:::i;7631:398::-;;;;;;;;;;-1:-1:-1;7631:398:2;;;;;:::i;:::-;;:::i;2930:93:13:-;;;;;;;;;;-1:-1:-1;3002:14:13;;2930:93;;732:22:2;;;;;;;;;;;;;:::i;2833:164:4:-;;;;;;;;;;-1:-1:-1;2833:164:4;;;;;:::i;:::-;2954:25;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;2833:164;1393:34:2;;;;;;;;;;-1:-1:-1;1393:34:2;;;;;;;;;;;760:22;;;;;;;;;;;;;:::i;10469:83::-;;;;;;;;;;-1:-1:-1;10469:83:2;;;;;:::i;:::-;;:::i;10724:::-;;;;;;;;;;-1:-1:-1;10724:83:2;;;;;:::i;:::-;;:::i;1897:192:12:-;;;;;;;;;;-1:-1:-1;1897:192:12;;;;;:::i;:::-;;:::i;648:22:2:-;;;;;;;;;;;;;:::i;7218:398::-;;;;;;;;;;-1:-1:-1;7218:398:2;;;;;:::i;:::-;;:::i;6805:::-;;;;;;;;;;-1:-1:-1;6805:398:2;;;;;:::i;:::-;;:::i;193:224:5:-;295:4;319:50;;;334:35;319:50;;:90;;;373:36;397:11;373:23;:36::i;:::-;312:97;193:224;-1:-1:-1;;193:224:5:o;2396:204:2:-;2451:4;;2463:116;2487:8;:15;2483:19;;2463:116;;;2538:1;2523:8;2532:1;2523:11;;;;;;;;:::i;:::-;;;;;;;;;:16;2519:54;;;-1:-1:-1;2562:4:2;;2396:204;-1:-1:-1;;2396:204:2:o;2519:54::-;2504:3;;;;:::i;:::-;;;;2463:116;;;-1:-1:-1;2591:5:2;;2396:204;-1:-1:-1;;2396:204:2:o;1672:100:4:-;1726:13;1759:5;1752:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1672:100;:::o;2305:221::-;2381:7;2409:16;2417:7;2409;:16::i;:::-;2401:73;;;;-1:-1:-1;;;2401:73:4;;8863:2:16;2401:73:4;;;8845:21:16;8902:2;8882:18;;;8875:30;8941:34;8921:18;;;8914:62;9012:14;8992:18;;;8985:42;9044:19;;2401:73:4;;;;;;;;;-1:-1:-1;2494:24:4;;;;:15;:24;;;;;;;;;2305:221::o;1888:411::-;1969:13;1985:23;2000:7;1985:14;:23::i;:::-;1969:39;;2033:5;2027:11;;:2;:11;;;;2019:57;;;;-1:-1:-1;;;2019:57:4;;9276:2:16;2019:57:4;;;9258:21:16;9315:2;9295:18;;;9288:30;9354:34;9334:18;;;9327:62;9425:3;9405:18;;;9398:31;9446:19;;2019:57:4;9074:397:16;2019:57:4;682:10:1;2111:21:4;;;;;:62;;-1:-1:-1;2136:37:4;2153:5;682:10:1;2833:164:4;:::i;2136:37::-;2089:168;;;;-1:-1:-1;;;2089:168:4;;9678:2:16;2089:168:4;;;9660:21:16;9717:2;9697:18;;;9690:30;9756:34;9736:18;;;9729:62;9827:26;9807:18;;;9800:54;9871:19;;2089:168:4;9476:420:16;2089:168:4;2270:21;2279:2;2283:7;2270:8;:21::i;:::-;1958:341;1888:411;;:::o;592:22:2:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10554:83::-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;10609:14:2::1;:24:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;10554:83::o;11550:90::-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;11614:22:2;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;11550:90:::0;:::o;3791:600:13:-;3866:16;;;3885:1;3866:16;;;:7;:16;;;;;;3858:71;;;;-1:-1:-1;;;3858:71:13;;10464:2:16;3858:71:13;;;10446:21:16;10503:2;10483:18;;;10476:30;10542:34;10522:18;;;10515:62;10613:8;10593:18;;;10586:36;10639:19;;3858:71:13;10262:402:16;3858:71:13;3940:21;3988:14;;3964:21;:38;;;;:::i;:::-;4082:18;;;4012:15;4082:18;;;:9;:18;;;;;;;;;4067:12;;4047:7;:16;;;;;;;3940:62;;-1:-1:-1;4012:15:13;;4031:32;;3940:62;4031:32;:::i;:::-;4030:49;;;;:::i;:::-;:70;;;;:::i;:::-;4012:88;-1:-1:-1;4119:12:13;4111:68;;;;-1:-1:-1;;;4111:68:13;;11681:2:16;4111:68:13;;;11663:21:16;11720:2;11700:18;;;11693:30;11759:34;11739:18;;;11732:62;11830:13;11810:18;;;11803:41;11861:19;;4111:68:13;11479:407:16;4111:68:13;4211:18;;;;;;;:9;:18;;;;;;:28;;4232:7;;4211:28;:::i;:::-;4190:18;;;;;;;:9;:18;;;;;:49;4266:14;;:24;;4283:7;;4266:24;:::i;:::-;4249:14;:41;4301:35;4319:7;4328;4301:17;:35::i;:::-;4351:33;;;218:42:16;206:55;;188:74;;293:2;278:18;;271:34;;;4351:33:13;;161:18:16;4351:33:13;;;;;;;3848:543;;3791:600;:::o;620:22:2:-;;;;;;;:::i;5566:398::-;5620:9;5632:13;1439:7:5;:14;;1351:110;5632:13:2;5656:14;;5620:25;;-1:-1:-1;5656:14:2;;;;;5648:51;;;;-1:-1:-1;;;5648:51:2;;12403:2:16;5648:51:2;;;12385:21:16;12442:2;12422:18;;;12415:30;12481:25;12461:18;;;12454:53;12524:18;;5648:51:2;12201:347:16;5648:51:2;5710:8;;:25;;;;;;;;3141::16;;;5739:10:2;;5710:39;:8;;:16;;3114:18:16;;5710:25:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;;;5702:76;;;;-1:-1:-1;;;5702:76:2;;13011:2:16;5702:76:2;;;12993:21:16;13050:2;13030:18;;;13023:30;13089:26;13069:18;;;13062:54;13133:18;;5702:76:2;12809:348:16;5702:76:2;5805:22;5819:7;5805:13;:22::i;:::-;:31;5797:40;;;;;;5878:28;5888:10;5900:1;5878:28;;;;;;;;;;;;:9;:28::i;:::-;5909:7;:15;;;;;;;;;;;;;;;;5938:22;;;;;;;-1:-1:-1;5938:22:2;;;;5566:398::o;10809:83::-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;10864:14:2::1;:24:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;10809:83::o;3003:339:4:-;3198:41;682:10:1;3231:7:4;3198:18;:41::i;:::-;3190:103;;;;-1:-1:-1;;;3190:103:4;;13364:2:16;3190:103:4;;;13346:21:16;13403:2;13383:18;;;13376:30;13442:34;13422:18;;;13415:62;13513:19;13493:18;;;13486:47;13550:19;;3190:103:4;13162:413:16;3190:103:4;3306:28;3316:4;3322:2;3326:7;3306:9;:28::i;11458:90:2:-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;11522:22:2;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;423:499:5:-:0;512:15;556:23;573:5;556:16;:23::i;:::-;548:5;:31;540:66;;;;-1:-1:-1;;;540:66:5;;13782:2:16;540:66:5;;;13764:21:16;13821:2;13801:18;;;13794:30;13860:24;13840:18;;;13833:52;13902:18;;540:66:5;13580:346:16;540:66:5;617:10;643:6;638:226;655:7;:14;651:18;;638:226;;;704:7;712:1;704:10;;;;;;;;:::i;:::-;;;;;;;;;;;;695:19;;;704:10;;695:19;691:162;;;748:5;739;:14;735:102;;;784:1;-1:-1:-1;777:8:5;;-1:-1:-1;777:8:5;735:102;830:7;;;:::i;:::-;;;735:102;671:3;;;:::i;:::-;;;638:226;;;-1:-1:-1;874:40:5;;-1:-1:-1;;;874:40:5;;13782:2:16;874:40:5;;;13764:21:16;13821:2;13801:18;;;13794:30;13860:24;13840:18;;;13833:52;13902:18;;874:40:5;13580:346:16;2801:204:2;2856:4;;2868:116;2892:8;:15;2888:19;;2868:116;;;2943:1;2928:8;2937:1;2928:11;;;;;;;;:::i;:::-;;;;;;;;;:16;2924:54;;;-1:-1:-1;2967:4:2;;2801:204;-1:-1:-1;;2801:204:2:o;2924:54::-;2909:3;;;;:::i;:::-;;;;2868:116;;704:22;;;;;;;:::i;11643:148::-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;11710:58:2::1;::::0;11692:12:::1;::::0;11718:10:::1;::::0;11742:21:::1;::::0;11692:12;11710:58;11692:12;11710:58;11742:21;11718:10;11710:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11691:77;;;11779:7;11771:16;;;::::0;::::1;;11688:103;11643:148::o:0;11274:90::-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;11338:22:2;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;5979:398::-:0;6033:9;6045:13;1439:7:5;:14;;1351:110;6045:13:2;6069:14;;6033:25;;-1:-1:-1;6069:14:2;;;;;6061:51;;;;-1:-1:-1;;;6061:51:2;;12403:2:16;6061:51:2;;;12385:21:16;12442:2;12422:18;;;12415:30;12481:25;12461:18;;;12454:53;12524:18;;6061:51:2;12201:347:16;6061:51:2;6123:8;;:25;;;;;;;;3141::16;;;6152:10:2;;6123:39;:8;;:16;;3114:18:16;;6123:25:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;;;6115:76;;;;-1:-1:-1;;;6115:76:2;;13011:2:16;6115:76:2;;;12993:21:16;13050:2;13030:18;;;13023:30;13089:26;13069:18;;;13062:54;13133:18;;6115:76:2;12809:348:16;6115:76:2;6218:22;6232:7;6218:13;:22::i;:::-;:31;6210:40;;;;;;6291:28;6301:10;6313:1;6291:28;;;;;;;;;;;;:9;:28::i;:::-;6322:7;:15;;;;;;;;;;;;;;;6351:8;:22;;;;;;;-1:-1:-1;6351:22:2;;;;5979:398::o;3611:204::-;3666:4;;3678:116;3702:8;:15;3698:19;;3678:116;;;3753:1;3738:8;3747:1;3738:11;;;;;;;;:::i;:::-;;;;;;;;;:16;3734:54;;;-1:-1:-1;3777:4:2;;3611:204;-1:-1:-1;;3611:204:2:o;3734:54::-;3719:3;;;;:::i;:::-;;;;3678:116;;11182:90;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;11246:22:2;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;3348:185:4:-:0;3486:39;3503:4;3509:2;3513:7;3486:39;;;;;;;;;;;;:16;:39::i;3206:204:2:-;3261:4;;3273:116;3297:8;:15;3293:19;;3273:116;;;3348:1;3333:8;3342:1;3333:11;;;;;;;;:::i;:::-;;;;;;;;;:16;3329:54;;;-1:-1:-1;3372:4:2;;3206:204;-1:-1:-1;;3206:204:2:o;3329:54::-;3314:3;;;;:::i;:::-;;;;3273:116;;1467:200:5;1542:7;1578:30;1439:7;:14;;1351:110;1578:30;1570:5;:38;1562:74;;;;-1:-1:-1;;;1562:74:5;;14343:2:16;1562:74:5;;;14325:21:16;14382:2;14362:18;;;14355:30;14421:25;14401:18;;;14394:53;14464:18;;1562:74:5;14141:347:16;1562:74:5;-1:-1:-1;1654:5:5;1467:200::o;10639:83:2:-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;10694:14:2::1;:24:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;10639:83::o;10894:::-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;10949:14:2::1;:24:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;10894:83::o;5153:398::-;5207:9;5219:13;1439:7:5;:14;;1351:110;5219:13:2;5243:14;;5207:25;;-1:-1:-1;5243:14:2;;5235:51;;;;-1:-1:-1;;;5235:51:2;;12403:2:16;5235:51:2;;;12385:21:16;12442:2;12422:18;;;12415:30;12481:25;12461:18;;;12454:53;12524:18;;5235:51:2;12201:347:16;5235:51:2;5297:8;;:25;;;;;;;;3141::16;;;5326:10:2;;5297:39;:8;;:16;;3114:18:16;;5297:25:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;;;5289:76;;;;-1:-1:-1;;;5289:76:2;;13011:2:16;5289:76:2;;;12993:21:16;13050:2;13030:18;;;13023:30;13089:26;13069:18;;;13062:54;13133:18;;5289:76:2;12809:348:16;5289:76:2;5392:22;5406:7;5392:13;:22::i;:::-;:31;5384:40;;;;;;5465:28;5475:10;5487:1;5465:28;;;;;;;;;;;;:9;:28::i;:::-;5496:7;:15;;;;;;;;;;;;;;;5525:8;:22;;;;;;;-1:-1:-1;5525:22:2;;;;5153:398::o;1427:239:4:-;1499:7;1519:13;1535:7;1543;1535:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;1570:19:4;1562:73;;;;-1:-1:-1;;;1562:73:4;;14695:2:16;1562:73:4;;;14677:21:16;14734:2;14714:18;;;14707:30;14773:34;14753:18;;;14746:62;14844:11;14824:18;;;14817:39;14873:19;;1562:73:4;14493:405:16;1007:414:4;1079:7;1107:19;;;1099:74;;;;-1:-1:-1;;;1099:74:4;;15105:2:16;1099:74:4;;;15087:21:16;15144:2;15124:18;;;15117:30;15183:34;15163:18;;;15156:62;15254:12;15234:18;;;15227:40;15284:19;;1099:74:4;14903:406:16;1099:74:4;1223:7;:14;1184:10;;;1248:119;1269:6;1265:1;:10;1248:119;;;1308:7;1316:1;1308:10;;;;;;;;:::i;:::-;;;;;;;;;;;;1299:19;;;1308:10;;1299:19;1295:61;;;1335:7;;;:::i;:::-;;;1295:61;1277:3;;;:::i;:::-;;;1248:119;;;-1:-1:-1;1408:5:4;;1007:414;-1:-1:-1;;;1007:414:4:o;1648:94:12:-;1070:6;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;1713:21:::1;1731:1;1713:9;:21::i;:::-;1648:94::o:0;676:22:2:-;;;;;;;:::i;928:417:5:-;987:16;1028:23;1045:5;1028:16;:23::i;:::-;1024:1;:27;1016:62;;;;-1:-1:-1;;;1016:62:5;;13782:2:16;1016:62:5;;;13764:21:16;13821:2;13801:18;;;13794:30;13860:24;13840:18;;;13833:52;13902:18;;1016:62:5;13580:346:16;1016:62:5;1089:18;1110:16;1120:5;1110:9;:16::i;:::-;1089:37;;1137:25;1179:10;1165:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1165:25:5;;1137:53;;1206:9;1201:111;1225:10;1221:1;:14;1201:111;;;1271:29;1291:5;1298:1;1271:19;:29::i;:::-;1257:8;1266:1;1257:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;1237:3;;;;:::i;:::-;;;;1201:111;;;-1:-1:-1;1329:8:5;928:417;-1:-1:-1;;;928:417:5:o;3499:98:13:-;3550:7;3576;3584:5;3576:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;3499:98;-1:-1:-1;;3499:98:13:o;1778:104:4:-;1834:13;1867:7;1860:14;;;;;:::i;10998:90:2:-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;11062:22:2;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;2532:295:4:-:0;2635:24;;;682:10:1;2635:24:4;;2627:62;;;;-1:-1:-1;;;2627:62:4;;15516:2:16;2627:62:4;;;15498:21:16;15555:2;15535:18;;;15528:30;15594:27;15574:18;;;15567:55;15639:18;;2627:62:4;15314:349:16;2627:62:4;682:10:1;2702:32:4;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;2771:48;;888:41:16;;;2702:42:4;;682:10:1;2771:48:4;;861:18:16;2771:48:4;;;;;;;2532:295;;:::o;11090:90:2:-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;11154:22:2;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;6392:398::-:0;6446:9;6458:13;1439:7:5;:14;;1351:110;6458:13:2;6482:14;;6446:25;;-1:-1:-1;6482:14:2;;;;;6474:51;;;;-1:-1:-1;;;6474:51:2;;12403:2:16;6474:51:2;;;12385:21:16;12442:2;12422:18;;;12415:30;12481:25;12461:18;;;12454:53;12524:18;;6474:51:2;12201:347:16;6474:51:2;6536:8;;:25;;;;;;;;3141::16;;;6565:10:2;;6536:39;:8;;:16;;3114:18:16;;6536:25:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;;;6528:76;;;;-1:-1:-1;;;6528:76:2;;13011:2:16;6528:76:2;;;12993:21:16;13050:2;13030:18;;;13023:30;13089:26;13069:18;;;13062:54;13133:18;;6528:76:2;12809:348:16;6528:76:2;6631:22;6645:7;6631:13;:22::i;:::-;:31;6623:40;;;;;;6704:28;6714:10;6726:1;6704:28;;;;;;;;;;;;:9;:28::i;:::-;6735:7;:15;;;;;;;;;;;;;;;6764:8;:22;;;;;;;-1:-1:-1;6764:22:2;;;;6392:398::o;11366:90::-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;11430:22:2;;::::1;::::0;:8:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;4016:204::-:0;4071:4;;4083:116;4107:8;:15;4103:19;;4083:116;;;4158:1;4143:8;4152:1;4143:11;;;;;;;;:::i;:::-;;;;;;;;;:16;4139:54;;;-1:-1:-1;4182:4:2;;4016:204;-1:-1:-1;;4016:204:2:o;4139:54::-;4124:3;;;;:::i;:::-;;;;4083:116;;3539:328:4;3714:41;682:10:1;3747:7:4;3714:18;:41::i;:::-;3706:103;;;;-1:-1:-1;;;3706:103:4;;13364:2:16;3706:103:4;;;13346:21:16;13403:2;13383:18;;;13376:30;13442:34;13422:18;;;13415:62;13513:19;13493:18;;;13486:47;13550:19;;3706:103:4;13162:413:16;3706:103:4;3820:39;3834:4;3840:2;3844:7;3853:5;3820:13;:39::i;:::-;3539:328;;;;:::o;10384:83:2:-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;10439:14:2::1;:24:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;10384:83::o;8795:1586::-;8868:13;8894:16;8902:7;8894;:16::i;:::-;8886:25;;;;;;8917:12;8914:1464;;8934:28;8965:11;:9;:11::i;:::-;8934:42;;9018:1;8993:14;8987:28;:32;:100;;;;;;;;;;;;;;;;;9046:14;9062:18;:7;:16;:18::i;:::-;9029:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;8987:100;8980:107;8795:1586;-1:-1:-1;;;8795:1586:2:o;8914:1464::-;9101:16;9109:7;9101;:16::i;:::-;9098:1280;;;9122:28;9153:11;:9;:11::i;9098:1280::-;9289:16;9297:7;9289;:16::i;:::-;9286:1092;;;9310:28;9341:11;:9;:11::i;9286:1092::-;9477:16;9485:7;9477;:16::i;:::-;9474:904;;;9497:28;9528:11;:9;:11::i;9474:904::-;9663:16;9671:7;9663;:16::i;:::-;9660:718;;;9683:28;9714:11;:9;:11::i;9660:718::-;9849:16;9857:7;9849;:16::i;:::-;9846:532;;;9869:28;9900:11;:9;:11::i;9846:532::-;10035:16;10043:7;10035;:16::i;:::-;10032:346;;;10055:28;10086:11;:9;:11::i;10032:346::-;10221:28;10252:11;:9;:11::i;10032:346::-;8795:1586;;;:::o;5036:102::-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;5081:12:2::1;5100:34;5110:10;5122:7;5100:34;;;;;;;;;;;::::0;:9:::1;:34::i;4422:204::-:0;4477:4;;4489:116;4513:8;:15;4509:19;;4489:116;;;4564:1;4549:8;4558:1;4549:11;;;;;;;;:::i;:::-;;;;;;;;;:16;4545:54;;;-1:-1:-1;4588:4:2;;4422:204;-1:-1:-1;;4422:204:2:o;4545:54::-;4530:3;;;;:::i;:::-;;;;4489:116;;4827:204;4882:4;;4894:116;4918:8;:15;4914:19;;4894:116;;;4969:1;4954:8;4963:1;4954:11;;;;;;;;:::i;:::-;;;;;;;;;:16;4950:54;;;-1:-1:-1;4993:4:2;;4827:204;-1:-1:-1;;4827:204:2:o;4950:54::-;4935:3;;;;:::i;:::-;;;;4894:116;;7631:398;7685:9;7697:13;1439:7:5;:14;;1351:110;7697:13:2;7721:14;;7685:25;;-1:-1:-1;7721:14:2;;;;;7713:51;;;;-1:-1:-1;;;7713:51:2;;12403:2:16;7713:51:2;;;12385:21:16;12442:2;12422:18;;;12415:30;12481:25;12461:18;;;12454:53;12524:18;;7713:51:2;12201:347:16;7713:51:2;7775:8;;:25;;;;;;;;3141::16;;;7804:10:2;;7775:39;:8;;:16;;3114:18:16;;7775:25:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;;;7767:76;;;;-1:-1:-1;;;7767:76:2;;13011:2:16;7767:76:2;;;12993:21:16;13050:2;13030:18;;;13023:30;13089:26;13069:18;;;13062:54;13133:18;;7767:76:2;12809:348:16;7767:76:2;7870:22;7884:7;7870:13;:22::i;:::-;:31;7862:40;;;;;;7943:28;7953:10;7965:1;7943:28;;;;;;;;;;;;:9;:28::i;:::-;7974:7;:15;;;;;;;;;;;;;;;8003:8;:22;;;;;;;-1:-1:-1;8003:22:2;;;;7631:398::o;732:22::-;;;;;;;:::i;760:::-;;;;;;;:::i;10469:83::-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;10524:14:2::1;:24:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;10469:83::o;10724:::-;1070:6:12;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;10779:14:2::1;:24:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;10724:83::o;1897:192:12:-;1070:6;;1217:23;1070:6;682:10:1;1217:23:12;1209:68;;;;-1:-1:-1;;;1209:68:12;;10103:2:16;1209:68:12;;;10085:21:16;;;10122:18;;;10115:30;10181:34;10161:18;;;10154:62;10233:18;;1209:68:12;9901:356:16;1209:68:12;1986:22:::1;::::0;::::1;1978:73;;;::::0;-1:-1:-1;;;1978:73:12;;16345:2:16;1978:73:12::1;::::0;::::1;16327:21:16::0;16384:2;16364:18;;;16357:30;16423:34;16403:18;;;16396:62;16494:8;16474:18;;;16467:36;16520:19;;1978:73:12::1;16143:402:16::0;1978:73:12::1;2062:19;2072:8;2062:9;:19::i;648:22:2:-:0;;;;;;;:::i;7218:398::-;7272:9;7284:13;1439:7:5;:14;;1351:110;7284:13:2;7308:14;;7272:25;;-1:-1:-1;7308:14:2;;;;;7300:51;;;;-1:-1:-1;;;7300:51:2;;12403:2:16;7300:51:2;;;12385:21:16;12442:2;12422:18;;;12415:30;12481:25;12461:18;;;12454:53;12524:18;;7300:51:2;12201:347:16;7300:51:2;7362:8;;:25;;;;;;;;3141::16;;;7391:10:2;;7362:39;:8;;:16;;3114:18:16;;7362:25:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;;;7354:76;;;;-1:-1:-1;;;7354:76:2;;13011:2:16;7354:76:2;;;12993:21:16;13050:2;13030:18;;;13023:30;13089:26;13069:18;;;13062:54;13133:18;;7354:76:2;12809:348:16;7354:76:2;7457:22;7471:7;7457:13;:22::i;:::-;:31;7449:40;;;;;;7530:28;7540:10;7552:1;7530:28;;;;;;;;;;;;:9;:28::i;:::-;7561:7;:15;;;;;;;;;;;;;;;7590:8;:22;;;;;;;-1:-1:-1;7590:22:2;;;;7218:398::o;6805:::-;6859:9;6871:13;1439:7:5;:14;;1351:110;6871:13:2;6895:14;;6859:25;;-1:-1:-1;6895:14:2;;;;;6887:51;;;;-1:-1:-1;;;6887:51:2;;12403:2:16;6887:51:2;;;12385:21:16;12442:2;12422:18;;;12415:30;12481:25;12461:18;;;12454:53;12524:18;;6887:51:2;12201:347:16;6887:51:2;6949:8;;:25;;;;;;;;3141::16;;;6978:10:2;;6949:39;:8;;:16;;3114:18:16;;6949:25:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:39;;;6941:76;;;;-1:-1:-1;;;6941:76:2;;13011:2:16;6941:76:2;;;12993:21:16;13050:2;13030:18;;;13023:30;13089:26;13069:18;;;13062:54;13133:18;;6941:76:2;12809:348:16;6941:76:2;7044:22;7058:7;7044:13;:22::i;:::-;:31;7036:40;;;;;;7117:28;7127:10;7139:1;7117:28;;;;;;;;;;;;:9;:28::i;:::-;7148:7;:15;;;;;;;;;;;;;;;7177:8;:22;;;;;;;-1:-1:-1;7177:22:2;;;;6805:398::o;696:305:4:-;798:4;835:40;;;850:25;835:40;;:105;;-1:-1:-1;892:48:4;;;907:33;892:48;835:105;:158;;;-1:-1:-1;886:25:3;871:40;;;;957:36:4;763:155:3;4196::4;4295:7;:14;4261:4;;4285:24;;:58;;;;;4341:1;4313:30;;:7;4321;4313:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;:30;;4278:65;4196:155;-1:-1:-1;;4196:155:4:o;6345:174::-;6420:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;6474:23;6420:24;6474:14;:23::i;:::-;6465:46;;;;;;;;;;;;6345:174;;:::o;2065:317:0:-;2180:6;2155:21;:31;;2147:73;;;;-1:-1:-1;;;2147:73:0;;16752:2:16;2147:73:0;;;16734:21:16;16791:2;16771:18;;;16764:30;16830:31;16810:18;;;16803:59;16879:18;;2147:73:0;16550:353:16;2147:73:0;2234:12;2252:9;:14;;2274:6;2252:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:52;;;2304:7;2296:78;;;;-1:-1:-1;;;2296:78:0;;17110:2:16;2296:78:0;;;17092:21:16;17149:2;17129:18;;;17122:30;17188:34;17168:18;;;17161:62;17259:28;17239:18;;;17232:56;17305:19;;2296:78:0;16908:422:16;4818:321:4;4948:18;4954:2;4958:7;4948:5;:18::i;:::-;4999:54;5030:1;5034:2;5038:7;5047:5;4999:22;:54::i;:::-;4977:154;;;;-1:-1:-1;;;4977:154:4;;17537:2:16;4977:154:4;;;17519:21:16;17576:2;17556:18;;;17549:30;17615:34;17595:18;;;17588:62;17686:20;17666:18;;;17659:48;17724:19;;4977:154:4;17335:414:16;4354:348:4;4447:4;4472:16;4480:7;4472;:16::i;:::-;4464:73;;;;-1:-1:-1;;;4464:73:4;;17956:2:16;4464:73:4;;;17938:21:16;17995:2;17975:18;;;17968:30;18034:34;18014:18;;;18007:62;18105:14;18085:18;;;18078:42;18137:19;;4464:73:4;17754:408:16;4464:73:4;4548:13;4564:23;4579:7;4564:14;:23::i;:::-;4548:39;;4617:5;4606:16;;:7;:16;;;:51;;;;4650:7;4626:31;;:20;4638:7;4626:11;:20::i;:::-;:31;;;4606:51;:87;;;-1:-1:-1;2954:25:4;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;4661:32;4598:96;4354:348;-1:-1:-1;;;;4354:348:4:o;5826:516::-;5985:4;5958:31;;:23;5973:7;5958:14;:23::i;:::-;:31;;;5950:85;;;;-1:-1:-1;;;5950:85:4;;18369:2:16;5950:85:4;;;18351:21:16;18408:2;18388:18;;;18381:30;18447:34;18427:18;;;18420:62;18518:11;18498:18;;;18491:39;18547:19;;5950:85:4;18167:405:16;5950:85:4;6054:16;;;6046:65;;;;-1:-1:-1;;;6046:65:4;;18779:2:16;6046:65:4;;;18761:21:16;18818:2;18798:18;;;18791:30;18857:34;18837:18;;;18830:62;18928:6;18908:18;;;18901:34;18952:19;;6046:65:4;18577:400:16;6046:65:4;6228:29;6245:1;6249:7;6228:8;:29::i;:::-;6287:2;6268:7;6276;6268:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;6307:27;;6326:7;;6307:27;;;;;;;;;;6268:16;6307:27;5826:516;;;:::o;2097:173:12:-;2172:6;;;;2189:17;;;;;;;;;;;2222:40;;2172:6;;;2189:17;2172:6;;2222:40;;2153:16;;2222:40;2142:128;2097:173;:::o;3878:315:4:-;4035:28;4045:4;4051:2;4055:7;4035:9;:28::i;:::-;4082:48;4105:4;4111:2;4115:7;4124:5;4082:22;:48::i;:::-;4074:111;;;;-1:-1:-1;;;4074:111:4;;17537:2:16;4074:111:4;;;17519:21:16;17576:2;17556:18;;;17549:30;17615:34;17595:18;;;17588:62;17686:20;17666:18;;;17659:48;17724:19;;4074:111:4;17335:414:16;8049:89:2;8101:13;8126:8;8119:15;;;;;:::i;288:723:15:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:15;;;;;;;;;;;;;;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:15;;-1:-1:-1;744:2:15;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:15;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:15;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;949:11:15;958:2;949:11;;:::i;:::-;;;818:154;;2197:197:2;2247:4;;2259:114;2283:7;:14;2279:18;;2259:114;;;2332:1;2318:7;2326:1;2318:10;;;;;;;;:::i;:::-;;;;;;;;;:15;2314:53;;;-1:-1:-1;2356:4:2;;2197:197;-1:-1:-1;;2197:197:2:o;2314:53::-;2299:3;;;;:::i;:::-;;;;2259:114;;2602:197;2652:4;;2664:114;2688:7;:14;2684:18;;2664:114;;;2737:1;2723:7;2731:1;2723:10;;;;;;;;:::i;:::-;;;;;;;;;:15;2719:53;;;-1:-1:-1;2761:4:2;;2602:197;-1:-1:-1;;2602:197:2:o;2719:53::-;2704:3;;;;:::i;:::-;;;;2664:114;;8158:89;8210:13;8235:8;8228:15;;;;;:::i;3007:197::-;3057:4;;3069:114;3093:7;:14;3089:18;;3069:114;;;3142:1;3128:7;3136:1;3128:10;;;;;;;;:::i;:::-;;;;;;;;;:15;3124:53;;;-1:-1:-1;3166:4:2;;3007:197;-1:-1:-1;;3007:197:2:o;3124:53::-;3109:3;;;;:::i;:::-;;;;3069:114;;8267:89;8319:13;8344:8;8337:15;;;;;:::i;3412:197::-;3462:4;;3474:114;3498:7;:14;3494:18;;3474:114;;;3547:1;3533:7;3541:1;3533:10;;;;;;;;:::i;:::-;;;;;;;;;:15;3529:53;;;-1:-1:-1;3571:4:2;;3412:197;-1:-1:-1;;3412:197:2:o;3529:53::-;3514:3;;;;:::i;:::-;;;;3474:114;;8376:89;8428:13;8453:8;8446:15;;;;;:::i;3817:197::-;3867:4;;3879:114;3903:7;:14;3899:18;;3879:114;;;3952:1;3938:7;3946:1;3938:10;;;;;;;;:::i;:::-;;;;;;;;;:15;3934:53;;;-1:-1:-1;3976:4:2;;3817:197;-1:-1:-1;;3817:197:2:o;3934:53::-;3919:3;;;;:::i;:::-;;;;3879:114;;8485:89;8537:13;8562:8;8555:15;;;;;:::i;4223:197::-;4273:4;;4285:114;4309:7;:14;4305:18;;4285:114;;;4358:1;4344:7;4352:1;4344:10;;;;;;;;:::i;:::-;;;;;;;;;:15;4340:53;;;-1:-1:-1;4382:4:2;;4223:197;-1:-1:-1;;4223:197:2:o;4340:53::-;4325:3;;;;:::i;:::-;;;;4285:114;;8594:89;8646:13;8671:8;8664:15;;;;;:::i;8703:89::-;8755:13;8780:8;8773:15;;;;;:::i;5142:346:4:-;5222:16;;;5214:61;;;;-1:-1:-1;;;5214:61:4;;19301:2:16;5214:61:4;;;19283:21:16;;;19320:18;;;19313:30;19379:34;19359:18;;;19352:62;19431:18;;5214:61:4;19099:356:16;5214:61:4;5295:16;5303:7;5295;:16::i;:::-;5294:17;5286:58;;;;-1:-1:-1;;;5286:58:4;;19662:2:16;5286:58:4;;;19644:21:16;19701:2;19681:18;;;19674:30;19740;19720:18;;;19713:58;19788:18;;5286:58:4;19460:352:16;5286:58:4;5413:7;:16;;;;;;;-1:-1:-1;5413:16:4;;;;;;;;;;;;;;;;;;5447:33;;5472:7;;-1:-1:-1;5447:33:4;;-1:-1:-1;;5447:33:4;5142:346;;:::o;6522:799::-;6677:4;6698:13;;;1066:20:0;1114:8;6694:620:4;;6734:72;;;;;:36;;;;;;:72;;682:10:1;;6785:4:4;;6791:7;;6800:5;;6734:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6734:72:4;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;6730:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6976:13:4;;6972:272;;7019:60;;-1:-1:-1;;;7019:60:4;;17537:2:16;7019:60:4;;;17519:21:16;17576:2;17556:18;;;17549:30;17615:34;17595:18;;;17588:62;17686:20;17666:18;;;17659:48;17724:19;;7019:60:4;17335:414:16;6972:272:4;7194:6;7188:13;7179:6;7175:2;7171:15;7164:38;6730:529;6857:51;;6867:41;6857:51;;-1:-1:-1;6850:58:4;;6694:620;-1:-1:-1;7298:4:4;6522:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316:177:16;401:66;394:5;390:78;383:5;380:89;370:117;;483:1;480;473:12;498:245;556:6;609:2;597:9;588:7;584:23;580:32;577:52;;;625:1;622;615:12;577:52;664:9;651:23;683:30;707:5;683:30;:::i;940:180::-;999:6;1052:2;1040:9;1031:7;1027:23;1023:32;1020:52;;;1068:1;1065;1058:12;1020:52;-1:-1:-1;1091:23:16;;940:180;-1:-1:-1;940:180:16:o;1125:258::-;1197:1;1207:113;1221:6;1218:1;1215:13;1207:113;;;1297:11;;;1291:18;1278:11;;;1271:39;1243:2;1236:10;1207:113;;;1338:6;1335:1;1332:13;1329:48;;;-1:-1:-1;;1373:1:16;1355:16;;1348:27;1125:258::o;1388:317::-;1430:3;1468:5;1462:12;1495:6;1490:3;1483:19;1511:63;1567:6;1560:4;1555:3;1551:14;1544:4;1537:5;1533:16;1511:63;:::i;:::-;1619:2;1607:15;1624:66;1603:88;1594:98;;;;1694:4;1590:109;;1388:317;-1:-1:-1;;1388:317:16:o;1710:220::-;1859:2;1848:9;1841:21;1822:4;1879:45;1920:2;1909:9;1905:18;1897:6;1879:45;:::i;2166:154::-;2252:42;2245:5;2241:54;2234:5;2231:65;2221:93;;2310:1;2307;2300:12;2325:315;2393:6;2401;2454:2;2442:9;2433:7;2429:23;2425:32;2422:52;;;2470:1;2467;2460:12;2422:52;2509:9;2496:23;2528:31;2553:5;2528:31;:::i;:::-;2578:5;2630:2;2615:18;;;;2602:32;;-1:-1:-1;;;2325:315:16:o;2645:160::-;2710:20;;2766:13;;2759:21;2749:32;;2739:60;;2795:1;2792;2785:12;2810:180;2866:6;2919:2;2907:9;2898:7;2894:23;2890:32;2887:52;;;2935:1;2932;2925:12;2887:52;2958:26;2974:9;2958:26;:::i;3177:184::-;3229:77;3226:1;3219:88;3326:4;3323:1;3316:15;3350:4;3347:1;3340:15;3366:691;3431:5;3461:18;3502:2;3494:6;3491:14;3488:40;;;3508:18;;:::i;:::-;3642:2;3636:9;3708:2;3696:15;;3547:66;3692:24;;;3718:2;3688:33;3684:42;3672:55;;;3742:18;;;3762:22;;;3739:46;3736:72;;;3788:18;;:::i;:::-;3828:10;3824:2;3817:22;3857:6;3848:15;;3887:6;3879;3872:22;3927:3;3918:6;3913:3;3909:16;3906:25;3903:45;;;3944:1;3941;3934:12;3903:45;3994:6;3989:3;3982:4;3974:6;3970:17;3957:44;4049:1;4042:4;4033:6;4025;4021:19;4017:30;4010:41;;;;3366:691;;;;;:::o;4062:451::-;4131:6;4184:2;4172:9;4163:7;4159:23;4155:32;4152:52;;;4200:1;4197;4190:12;4152:52;4240:9;4227:23;4273:18;4265:6;4262:30;4259:50;;;4305:1;4302;4295:12;4259:50;4328:22;;4381:4;4373:13;;4369:27;-1:-1:-1;4359:55:16;;4410:1;4407;4400:12;4359:55;4433:74;4499:7;4494:2;4481:16;4476:2;4472;4468:11;4433:74;:::i;4518:255::-;4585:6;4638:2;4626:9;4617:7;4613:23;4609:32;4606:52;;;4654:1;4651;4644:12;4606:52;4693:9;4680:23;4712:31;4737:5;4712:31;:::i;4778:456::-;4855:6;4863;4871;4924:2;4912:9;4903:7;4899:23;4895:32;4892:52;;;4940:1;4937;4930:12;4892:52;4979:9;4966:23;4998:31;5023:5;4998:31;:::i;:::-;5048:5;-1:-1:-1;5105:2:16;5090:18;;5077:32;5118:33;5077:32;5118:33;:::i;:::-;4778:456;;5170:7;;-1:-1:-1;;;5224:2:16;5209:18;;;;5196:32;;4778:456::o;5491:632::-;5662:2;5714:21;;;5784:13;;5687:18;;;5806:22;;;5633:4;;5662:2;5885:15;;;;5859:2;5844:18;;;5633:4;5928:169;5942:6;5939:1;5936:13;5928:169;;;6003:13;;5991:26;;6072:15;;;;6037:12;;;;5964:1;5957:9;5928:169;;;-1:-1:-1;6114:3:16;;5491:632;-1:-1:-1;;;;;;5491:632:16:o;6128:315::-;6193:6;6201;6254:2;6242:9;6233:7;6229:23;6225:32;6222:52;;;6270:1;6267;6260:12;6222:52;6309:9;6296:23;6328:31;6353:5;6328:31;:::i;:::-;6378:5;-1:-1:-1;6402:35:16;6433:2;6418:18;;6402:35;:::i;:::-;6392:45;;6128:315;;;;;:::o;6448:795::-;6543:6;6551;6559;6567;6620:3;6608:9;6599:7;6595:23;6591:33;6588:53;;;6637:1;6634;6627:12;6588:53;6676:9;6663:23;6695:31;6720:5;6695:31;:::i;:::-;6745:5;-1:-1:-1;6802:2:16;6787:18;;6774:32;6815:33;6774:32;6815:33;:::i;:::-;6867:7;-1:-1:-1;6921:2:16;6906:18;;6893:32;;-1:-1:-1;6976:2:16;6961:18;;6948:32;7003:18;6992:30;;6989:50;;;7035:1;7032;7025:12;6989:50;7058:22;;7111:4;7103:13;;7099:27;-1:-1:-1;7089:55:16;;7140:1;7137;7130:12;7089:55;7163:74;7229:7;7224:2;7211:16;7206:2;7202;7198:11;7163:74;:::i;:::-;7153:84;;;6448:795;;;;;;;:::o;7248:388::-;7316:6;7324;7377:2;7365:9;7356:7;7352:23;7348:32;7345:52;;;7393:1;7390;7383:12;7345:52;7432:9;7419:23;7451:31;7476:5;7451:31;:::i;:::-;7501:5;-1:-1:-1;7558:2:16;7543:18;;7530:32;7571:33;7530:32;7571:33;:::i;:::-;7623:7;7613:17;;;7248:388;;;;;:::o;7641:184::-;7693:77;7690:1;7683:88;7790:4;7787:1;7780:15;7814:4;7811:1;7804:15;7830:184;7882:77;7879:1;7872:88;7979:4;7976:1;7969:15;8003:4;8000:1;7993:15;8019:195;8058:3;8089:66;8082:5;8079:77;8076:103;;;8159:18;;:::i;:::-;-1:-1:-1;8206:1:16;8195:13;;8019:195::o;8219:437::-;8298:1;8294:12;;;;8341;;;8362:61;;8416:4;8408:6;8404:17;8394:27;;8362:61;8469:2;8461:6;8458:14;8438:18;8435:38;8432:218;;;8506:77;8503:1;8496:88;8607:4;8604:1;8597:15;8635:4;8632:1;8625:15;8432:218;;8219:437;;;:::o;10669:128::-;10709:3;10740:1;10736:6;10733:1;10730:13;10727:39;;;10746:18;;:::i;:::-;-1:-1:-1;10782:9:16;;10669:128::o;10802:228::-;10842:7;10968:1;10900:66;10896:74;10893:1;10890:81;10885:1;10878:9;10871:17;10867:105;10864:131;;;10975:18;;:::i;:::-;-1:-1:-1;11015:9:16;;10802:228::o;11035:184::-;11087:77;11084:1;11077:88;11184:4;11181:1;11174:15;11208:4;11205:1;11198:15;11224:120;11264:1;11290;11280:35;;11295:18;;:::i;:::-;-1:-1:-1;11329:9:16;;11224:120::o;11349:125::-;11389:4;11417:1;11414;11411:8;11408:34;;;11422:18;;:::i;:::-;-1:-1:-1;11459:9:16;;11349:125::o;12553:251::-;12623:6;12676:2;12664:9;12655:7;12651:23;12647:32;12644:52;;;12692:1;12689;12682:12;12644:52;12724:9;12718:16;12743:31;12768:5;12743:31;:::i;15668:470::-;15847:3;15885:6;15879:13;15901:53;15947:6;15942:3;15935:4;15927:6;15923:17;15901:53;:::i;:::-;16017:13;;15976:16;;;;16039:57;16017:13;15976:16;16073:4;16061:17;;16039:57;:::i;:::-;16112:20;;15668:470;-1:-1:-1;;;;15668:470:16:o;18982:112::-;19014:1;19040;19030:35;;19045:18;;:::i;:::-;-1:-1:-1;19079:9:16;;18982:112::o;19817:512::-;20011:4;20040:42;20121:2;20113:6;20109:15;20098:9;20091:34;20173:2;20165:6;20161:15;20156:2;20145:9;20141:18;20134:43;;20213:6;20208:2;20197:9;20193:18;20186:34;20256:3;20251:2;20240:9;20236:18;20229:31;20277:46;20318:3;20307:9;20303:19;20295:6;20277:46;:::i;:::-;20269:54;19817:512;-1:-1:-1;;;;;;19817:512:16:o;20334:249::-;20403:6;20456:2;20444:9;20435:7;20431:23;20427:32;20424:52;;;20472:1;20469;20462:12;20424:52;20504:9;20498:16;20523:30;20547:5;20523:30;:::i

Swarm Source

ipfs://cac13f90c819867fbfa1a01c0c80c4abc00cec3f0c44d0b43ea494820ba5fc34
Loading...
Loading
[ Download: CSV Export  ]
[ 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.