ETH Price: $3,404.43 (+2.66%)

Token

Illuminati (Truth)
 

Overview

Max Total Supply

187 Truth

Holders

144

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 Truth
0x993a69EFE73e3f87df4276E40E81E426385Fd2D8
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:
Illuminati

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 14 of 18: Illuminati.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.0;

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


abstract contract ERC1155Token {
    function balanceOf(address account, uint256 id) external virtual view returns (uint256 balance);
}

abstract contract NFTBAL1155 {
    function balanceOf(address account) external virtual view returns (uint256 balance);
} 

abstract contract NFTBAL20 {
    function balanceOf(address account) external virtual view returns (uint256 balance);
}

abstract contract NFTBAL721 {
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

contract Illuminati is ERC721Enumerable, Ownable, Payment, Guard {
    using Strings for uint256;
    string public baseURI;

  	//settings
  	uint256 public maxSupply = 8121;
  	uint256 private maxMint = 2;
  	uint256 private price = 0.23 ether;

	NFTBAL721 private nftbal721;
	NFTBAL20 private nftbal20;
	NFTBAL1155 private nftbal1155;

	//phase limits
	uint256 private maxInduction = 1500;
	uint256 private maxPhase1 = 1250;
	uint256 private maxPhase2 = 1000;
	uint256 private maxPhase3 = 750;

	//phase counters
	uint256 public InductionReserveCount;
    uint256 public phase1ReserveCount;
	uint256 public phase2ReserveCount;
	uint256 public phase3ReserveCount;

	//buttons
	bool public inductionStatus = false;
	bool public whitelistStatus = false;
	bool public reserveStatus = false;
	bool public publicStatus = false;
	bool public phase1 = false;
	bool public phase2 = false;
	bool public phase3 = false;

	//mappings
	mapping(address => uint256) public onReserveList;
	mapping(address => uint256) public onWhitelist;
	mapping(address => uint256) private _reserved;
	mapping (address => uint256) authorizedContractERC1155;
	mapping (address => uint256) authorizedContractERC721;
	mapping (address => uint256) authorizedContractERC20;

	address[] private addressList = [
	0xb7118e23C6bFA9eFEC528b31124468D29eaf9AEB, //Illuminati DAO/Collective
	0xb746ef36D3A1672074ED6674A999a097Ec4b606f,
	0x221320D34800760E06B206aCd01e626e463eB03E,
	0x993a69EFE73e3f87df4276E40E81E426385Fd2D8,
	0xEcc03efB7C0A7BD09A5cC7e954Ac42E8f949A0B5,
	0x612819484179821cD76BbDe5b63AE66fb5e50fb5,
	0xfd1494E7EadBD7A4b8C0f7AC098723493F3993a4,
	0x559de301EffC4338b2805f79B4e815F387332d23,
	0xB050bbdcB90f6760c83E4948354e1053FB034673,
	0x0b7D1aFa0Ff0366B6e498E5af5497aAF80e40726	
	];
	uint[] private shareList = [50,
								10,
								10,
								10,
								5,
								1,
								1,
								1,
								1,
								11];
  
	constructor(
	string memory _name,
	string memory _symbol,
	string memory _initBaseURI
	) 
    ERC721(_name, _symbol)
	    Payment(addressList, shareList){
	    setURI(_initBaseURI);
	}

	//minting 
	function mintReserved(uint256 _tokenAmount) public payable {
	uint256 s = totalSupply();
	uint256 r = onReserveList[msg.sender];
    uint256 ba = balanceOf(msg.sender);
	require(r > 0,"Did not pass the gate, yet");
	require(reserveStatus,"The gate is closed");
	require(s + _tokenAmount <= maxSupply,"Sold out");
	require(_tokenAmount > 0, "Mint more than 0" );
	require(msg.value >= price * _tokenAmount, "ETH input is wrong.");
	require(_tokenAmount <= maxMint,"Mint less.");
	require(ba + _tokenAmount <= maxMint,"This wallet is maxed out");
	delete r;
	for (uint256 i = 0; i < _tokenAmount; ++i) {
	_safeMint(msg.sender, s + i, "");
	}
	delete s;
	}

	//secret indunction phase
	function mintInduction(uint256 _tokenAmount) public payable {
	uint256 s = totalSupply();
	uint256 ba = balanceOf(msg.sender);
	uint256 wl = onWhitelist[msg.sender];
	address contractAddressHash = 0x495f947276749Ce646f68AC8c248420045cb7b5e;
	uint256 tokenid = 70196056058896361747704672441801371315898722973429726505227809712513925252572;
	ERC1155Token contractAddressToken = ERC1155Token(contractAddressHash);
    require(contractAddressToken.balanceOf(msg.sender,tokenid) > 0 || wl > 0, "Did not pass the gate, yet");
	require(s + _tokenAmount <= maxSupply,"Sold out");
	require(_tokenAmount > 0, "Mint more than 0" );
	require(msg.value >= price * _tokenAmount, "ETH input is wrong.");
	require(_tokenAmount <= maxMint,"Mint less.");
	require(ba + _tokenAmount <= maxMint,"This wallet is maxed out");
	if(wl > 0){
	for (uint256 i = 0; i < _tokenAmount; ++i) {
	require(whitelistStatus,"The gate is closed");
	_safeMint(msg.sender, s + i, "");
	}
	}
	else{
	require(InductionReserveCount <= maxInduction * maxMint,"Induction Phase max reached");
	require(inductionStatus,"The gate is closed");
	for (uint256 i = 0; i < _tokenAmount; ++i) {
	_safeMint(msg.sender, s + i, "");
	InductionReserveCount += 1;
	}
	}
	delete wl;
	delete s;
	}

    //public minting 
	function mintPublic(uint256 _tokenAmount) public payable {
	uint256 s = totalSupply();
	require(publicStatus,"The gate is closed");
	require(s + _tokenAmount <= maxSupply,"Sold out");
	require(_tokenAmount > 0, "Mint more than 0." );
	require(msg.value >= price * _tokenAmount, "ETH input is wrong.");
	require(_tokenAmount <= maxMint,"Mint less.");
	for (uint256 i = 0; i < _tokenAmount; ++i) {
	_safeMint(msg.sender, s + i, "");
	}
	delete s;
	}

	// whitelist
	function whitelistSet(address[] calldata _addresses) public onlyOwner {
	for(uint256 i; i < _addresses.length; i++){
	onWhitelist[_addresses[i]] = maxMint;
	}
	}

	//phase 1 reserve
	function reservePhase1(address contractAddressHash, uint256 contractType) public {
	//phase active
	require(phase1,"Phase is not live yet");
	//check if address already reserved
	require(_reserved[msg.sender] == 0,"Already Reserved");
	//check reserve limit
	require(phase1ReserveCount <= maxPhase1, "Phase limit has been hit");
	//ERC1155 check
	if(contractType == 1155){
	nftbal1155 = NFTBAL1155(contractAddressHash);
	uint b1 = nftbal1155.balanceOf(msg.sender); // 1155 balance
	require(b1 > 0);
	require(authorizedContractERC1155[contractAddressHash] > 0, "Contract is not gatekeeped");
	onReserveList[msg.sender] = maxMint;
	_reserved[msg.sender] += 1;
	phase1ReserveCount += 1;
	delete b1;
	}
	//ERC721 check
	else if(contractType == 721){
	nftbal721 = NFTBAL721(contractAddressHash);
	uint b2 = nftbal721.balanceOf(msg.sender); // 721 balance
	require(b2 > 0);
	require(authorizedContractERC721[contractAddressHash] > 0, "Contract is not gatekeeped");
	onReserveList[msg.sender] = maxMint;
	_reserved[msg.sender] += 1;
	phase1ReserveCount += 1;
	delete b2;
	}
	//ERC20 check
	else if(contractType == 20){
	nftbal20 = NFTBAL20(contractAddressHash);
	uint b3 = nftbal20.balanceOf(msg.sender); // 20 balance
	require(b3 > 0);
	require(authorizedContractERC20[contractAddressHash] > 0, "Contract is not gatekeeped");
	onReserveList[msg.sender] = maxMint;
	_reserved[msg.sender] += 1;
	phase1ReserveCount += 1;
	delete b3;
	}
	else{
	onReserveList[msg.sender] = 0;
	}
	}

	//phase 2 reserve
	function reservePhase2(address contractAddressHash, uint256 contractType) public {
	//phase active
	require(phase2,"Phase is not live yet");
	//check if address already reserved
	require(_reserved[msg.sender] == 0,"Already Reserved");
	//check reserve limit
	require(phase2ReserveCount <= maxPhase2, "Phase limit has been hit");
	//ERC1155 check
	if(contractType == 1155){
	nftbal1155 = NFTBAL1155(contractAddressHash);
	uint b1 = nftbal1155.balanceOf(msg.sender); // 1155 balance
	require(b1 > 0);
	require(authorizedContractERC1155[contractAddressHash] > 0, "Contract is not gatekeeped");
	onReserveList[msg.sender] = maxMint;
	_reserved[msg.sender] += 1;
	phase2ReserveCount += 1;
	delete b1;
	}
	//ERC721 check
	else if(contractType == 721){
	nftbal721 = NFTBAL721(contractAddressHash);
	uint b2 = nftbal721.balanceOf(msg.sender); // 721 balance
	require(b2 > 0);
	require(authorizedContractERC721[contractAddressHash] > 0, "Contract is not gatekeeped");
	onReserveList[msg.sender] = maxMint;
	_reserved[msg.sender] += 1;
	phase2ReserveCount += 1;
	delete b2;
	}
	//ERC20 check
	else if(contractType == 20){
	nftbal20 = NFTBAL20(contractAddressHash);
	uint b3 = nftbal20.balanceOf(msg.sender); // 20 balance
	require(b3 > 0);
	require(authorizedContractERC20[contractAddressHash] > 0, "Contract is not gatekeeped");
	onReserveList[msg.sender] = maxMint;
	_reserved[msg.sender] += 1;
	phase2ReserveCount += 1;
	delete b3;
	}
	else{
	onReserveList[msg.sender] = 0;
	}
	}

	//phase 3 reserve
	function reservePhase3(address contractAddressHash, uint256 contractType) public {
	//phase active
	require(phase3,"Phase is not live yet");
	//check if address already reserved
	require(_reserved[msg.sender] == 0,"Already Reserved");
	//check reserve limit
	require(phase3ReserveCount <= maxPhase3, "Phase limit has been hit");
	//ERC1155 check
	if(contractType == 1155){
	nftbal1155 = NFTBAL1155(contractAddressHash);
	uint b1 = nftbal1155.balanceOf(msg.sender); // 1155 balance
	require(b1 > 0);
	require(authorizedContractERC1155[contractAddressHash] > 0, "Contract is not gatekeeped");
	onReserveList[msg.sender] = maxMint;
	_reserved[msg.sender] += 1;
	phase3ReserveCount += 1;
	delete b1;
	}
	//ERC721 check
	else if(contractType == 721){
	nftbal721 = NFTBAL721(contractAddressHash);
	uint b2 = nftbal721.balanceOf(msg.sender); // 721 balance
	require(b2 > 0);
	require(authorizedContractERC721[contractAddressHash] > 0, "Contract is not gatekeeped");
	onReserveList[msg.sender] = maxMint;
	_reserved[msg.sender] += 1;
	phase3ReserveCount += 1;
	delete b2;
	}
	//ERC20 check
	else if(contractType == 20){
	nftbal20 = NFTBAL20(contractAddressHash);
	uint b3 = nftbal20.balanceOf(msg.sender); // 20 balance
	require(b3 > 0);
	require(authorizedContractERC20[contractAddressHash] > 0, "Contract is not gatekeeped");
	onReserveList[msg.sender] = maxMint;
	_reserved[msg.sender] += 1;
	phase3ReserveCount += 1;
	delete b3;
	}
	else{
	onReserveList[msg.sender] = 0;
	}
	}


    // Check if an address already reserved
	function reserved(address owner) public view  returns (uint256){
    require(owner != address(0), 'Zero address');
    return _reserved[owner];
    }

	// Authorize specific ERC1155 smart contract
    function toggleContractAuthorizationERC1155(address contractAddress) public onlyOwner {
        authorizedContractERC1155[contractAddress] = 1;
    }
    // Check if a ERC1155 contract address is authorized to reserve/mint
    function isERC1155ContractAuthorized(address contractAddress) view public returns(uint256) {
        return authorizedContractERC1155[contractAddress];
    }

	// Authorize specific ERC721 smart contract
    function toggleContractAuthorizationERC721(address contractAddress) public onlyOwner {
        authorizedContractERC721[contractAddress] = 1;
    }
    // Check if a ERC721 contract address is authorized to reserve/mint
    function isERC721ContractAuthorized(address contractAddress) view public returns(uint256) {
        return authorizedContractERC721[contractAddress];
    }

	// Authorize specific ERC20 smart contract
    function toggleContractAuthorizationERC20(address contractAddress) public onlyOwner {
        authorizedContractERC20[contractAddress] = 1;
    }
    // Check if a ERC20 contract address is authorized to reserve/mint
    function isERC20ContractAuthorized(address contractAddress) view public returns(uint256) {
        return authorizedContractERC20[contractAddress];
    }

	function _baseURI() internal view virtual returns (string memory) {
	return baseURI;
	}

	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
	require(_exists(tokenId), "Nonexistent token");
	string memory currentBaseURI = _baseURI();
	return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
	}

	function setPrice(uint256 _newPrice) public onlyOwner {
	price = _newPrice;
	}

	function setmaxMint(uint256 _newMaxMint) public onlyOwner {
	maxMint = _newMaxMint;
	}

	function setURI(string memory _newBaseURI) public onlyOwner {
	baseURI = _newBaseURI;
	}

	function publicSwitch(bool _status) public onlyOwner {
	publicStatus = _status;
	}

	function inductionSwitch(bool _status) public onlyOwner {
	inductionStatus = _status;
	}

	function whitelistSwitch(bool _status) public onlyOwner {
	whitelistStatus = _status;
	}

	function reserveSwitch(bool _status) public onlyOwner {
	reserveStatus = _status;
	}

	function phase1switch(bool _status) public onlyOwner {
	phase1 = _status;
	}

	function phase2switch(bool _status) public onlyOwner {
	phase2 = _status;
	}

	function phase3switch(bool _status) public onlyOwner {
	phase3 = _status;
	}

	function setinductionmax(uint256 _newMax) public onlyOwner {
	maxInduction = _newMax;
	}

	function setphase1max(uint256 _newMax) public onlyOwner {
	maxPhase1 = _newMax;
	}

	function setphase2max(uint256 _newMax) public onlyOwner {
	maxPhase2 = _newMax;
	}

	function setphase3max(uint256 _newMax) public onlyOwner {
	maxPhase3 = _newMax;
	}	

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

File 1 of 18: 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 18: 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 3 of 18: 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 4 of 18: 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 5 of 18: 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 6 of 18: 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 7 of 18: IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 8 of 18: 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 18: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

}

File 10 of 18: 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 11 of 18: 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 12 of 18: 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 13 of 18: 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 15 of 18: 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 16 of 18: 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 17 of 18: 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 18 of 18: 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":"string","name":"_initBaseURI","type":"string"}],"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":[],"name":"InductionReserveCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inductionStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"inductionSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"isERC1155ContractAuthorized","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"isERC20ContractAuthorized","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"isERC721ContractAuthorized","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintInduction","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"onReserveList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"onWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase1ReserveCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"phase1switch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"phase2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase2ReserveCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"phase2switch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"phase3","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase3ReserveCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"phase3switch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"publicSwitch","outputs":[],"stateMutability":"nonpayable","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":"contractAddressHash","type":"address"},{"internalType":"uint256","name":"contractType","type":"uint256"}],"name":"reservePhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddressHash","type":"address"},{"internalType":"uint256","name":"contractType","type":"uint256"}],"name":"reservePhase2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddressHash","type":"address"},{"internalType":"uint256","name":"contractType","type":"uint256"}],"name":"reservePhase3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"reserveSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"reserved","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":"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":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setinductionmax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setmaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setphase1max","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setphase2max","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setphase3max","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"address","name":"contractAddress","type":"address"}],"name":"toggleContractAuthorizationERC1155","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"toggleContractAuthorizationERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"toggleContractAuthorizationERC721","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"whitelistSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"whitelistSwitch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

611fb9600d556002600e556703311fc80a570000600f556105dc6013556104e26014556103e86015556102ee601655601b805466ffffffffffffff191690556101c060405273b7118e23c6bfa9efec528b31124468d29eaf9aeb608090815273b746ef36d3a1672074ed6674a999a097ec4b606f60a05273221320d34800760e06b206acd01e626e463eb03e60c05273993a69efe73e3f87df4276e40e81e426385fd2d860e05273ecc03efb7c0a7bd09a5cc7e954ac42e8f949a0b56101005273612819484179821cd76bbde5b63ae66fb5e50fb56101205273fd1494e7eadbd7a4b8c0f7ac098723493f3993a46101405273559de301effc4338b2805f79b4e815f387332d236101605273b050bbdcb90f6760c83e4948354e1053fb03467361018052730b7d1afa0ff0366b6e498e5af5497aaf80e407266101a0526200014c90602290600a620006e0565b50604080516101408101825260328152600a602082018190529181018290526060810182905260056080820152600160a0820181905260c0820181905260e08201819052610100820152600b610120820152620001ad91602391906200074a565b50348015620001bb57600080fd5b5060405162005ea238038062005ea2833981016040819052620001de91620008ee565b60228054806020026020016040519081016040528092919081815260200182805480156200023657602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831162000217575b505050505060238054806020026020016040519081016040528092919081815260200182805480156200028957602002820191906000526020600020905b81548152602001906001019080831162000274575b50508751889350879250620002a7915060009060208501906200078d565b508051620002bd9060019060208401906200078d565b505050620002da620002d46200042760201b60201c565b6200042b565b80518251146200034c5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200039f5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000343565b60005b82518110156200040b57620003f6838281518110620003c557620003c56200097f565b6020026020010151838381518110620003e257620003e26200097f565b60200260200101516200047d60201b60201c565b806200040281620009ab565b915050620003a2565b50506001600b55506200041e816200066b565b50505062000a21565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004ea5760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000343565b600081116200053c5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000343565b6001600160a01b03821660009081526008602052604090205415620005b85760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000343565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b038416908117909155600090815260086020526040902081905560065462000622908290620009c9565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b6005546001600160a01b03163314620006c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000343565b8051620006dc90600c9060208401906200078d565b5050565b82805482825590600052602060002090810192821562000738579160200282015b828111156200073857825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000701565b50620007469291506200080a565b5090565b82805482825590600052602060002090810192821562000738579160200282015b8281111562000738578251829060ff169055916020019190600101906200076b565b8280546200079b90620009e4565b90600052602060002090601f016020900481019282620007bf576000855562000738565b82601f10620007da57805160ff191683800117855562000738565b8280016001018555821562000738579182015b8281111562000738578251825591602001919060010190620007ed565b5b808211156200074657600081556001016200080b565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200084957600080fd5b81516001600160401b038082111562000866576200086662000821565b604051601f8301601f19908116603f0116810190828211818310171562000891576200089162000821565b81604052838152602092508683858801011115620008ae57600080fd5b600091505b83821015620008d25785820183015181830184015290820190620008b3565b83821115620008e45760008385830101525b9695505050505050565b6000806000606084860312156200090457600080fd5b83516001600160401b03808211156200091c57600080fd5b6200092a8783880162000837565b945060208601519150808211156200094157600080fd5b6200094f8783880162000837565b935060408601519150808211156200096657600080fd5b50620009758682870162000837565b9150509250925092565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415620009c257620009c262000995565b5060010190565b60008219821115620009df57620009df62000995565b500190565b600181811c90821680620009f957607f821691505b6020821081141562000a1b57634e487b7160e01b600052602260045260246000fd5b50919050565b6154718062000a316000396000f3fe6080604052600436106104695760003560e01c8063715018a611610243578063ac77d32211610143578063d5abeb01116100bb578063e7c562291161008a578063efd0cbf91161006f578063efd0cbf914610de2578063f2fde38b14610df5578063f91798b114610e1557600080fd5b8063e7c5622914610d6a578063e985e9c514610d8c57600080fd5b8063d5abeb0114610cff578063da9425e214610d15578063e00cd18114610d35578063e33b7de314610d5557600080fd5b8063c3b0157b11610112578063ce7c2ac2116100f7578063ce7c2ac214610c6c578063d467157e14610caf578063d4deb3b614610cdc57600080fd5b8063c3b0157b14610c28578063c87b56dd14610c4c57600080fd5b8063ac77d32214610b85578063b88d4fde14610ba5578063bd1de37a14610bc5578063bf2e49e814610c0857600080fd5b80638da5cb5b116101d65780639852595c116101a55780639a5d140b1161018a5780639a5d140b14610b335780639ddf7ad314610b46578063a22cb46514610b6557600080fd5b80639852595c14610ada578063999023ce14610b1d57600080fd5b80638da5cb5b14610a5a5780639039906214610a8557806391b7f5ed14610aa557806395d89b4114610ac557600080fd5b80638462151c116102125780638462151c146109cd57806388557bbd146109fa5780638b83209b14610a1a5780638d3f070914610a3a57600080fd5b8063715018a6146109625780637b359797146109775780637f4ef98f1461099757806382a8e1ec146109b757600080fd5b80632f745c59116103695780634f6ccce7116102e15780636352211e116102b05780636c0360eb116102955780636c0360eb146108ea5780636d849f79146108ff57806370a082311461094257600080fd5b80636352211e146108aa57806366919e9e146108ca57600080fd5b80634f6ccce7146108345780634fd7cd33146108545780635d22f75b146108745780635fd7fb7f1461088a57600080fd5b80633ccfd60b11610338578063444935071161031d57806344493507146107d45780634aeacd0a146107f45780634bf8e8721461081457600080fd5b80633ccfd60b146107ac57806342842e0e146107b457600080fd5b80632f745c59146107375780632fc2e29c1461075757806338c1384f146107775780633a98ef391461079757600080fd5b80631497b518116103fc5780631e3ba285116103cb57806323b872dd116103b057806323b872dd146106d757806326953669146106f75780632a40bb481461071757600080fd5b80631e3ba285146106a757806323997c89146106bd57600080fd5b80631497b5181461062557806318160ddd14610645578063191655871461065a5780631d6086591461067a57600080fd5b8063081812fc11610438578063081812fc1461058d578063082b2a4d146105d2578063095ea7b3146105e5578063132a8f031461060557600080fd5b80630137d13e146104c457806301ffc9a71461051957806302fe53051461054957806306fdde031461056b57600080fd5b366104bf577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b3480156104d057600080fd5b506105066104df366004614d85565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208052604090205490565b6040519081526020015b60405180910390f35b34801561052557600080fd5b50610539610534366004614dd0565b610e36565b6040519015158152602001610510565b34801561055557600080fd5b50610569610564366004614eb0565b610e92565b005b34801561057757600080fd5b50610580610f15565b6040516105109190614f6f565b34801561059957600080fd5b506105ad6105a8366004614f82565b610fa7565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610510565b6105696105e0366004614f82565b61104d565b3480156105f157600080fd5b50610569610600366004614f9b565b6114e1565b34801561061157600080fd5b50610569610620366004614d85565b61163a565b34801561063157600080fd5b50610569610640366004614fdc565b6116ca565b34801561065157600080fd5b50600254610506565b34801561066657600080fd5b50610569610675366004614d85565b61176b565b34801561068657600080fd5b50610506610695366004614d85565b601d6020526000908152604090205481565b3480156106b357600080fd5b5061050660175481565b3480156106c957600080fd5b50601b546105399060ff1681565b3480156106e357600080fd5b506105696106f2366004614ff7565b6119a6565b34801561070357600080fd5b50610569610712366004614f82565b611a2d565b34801561072357600080fd5b50610569610732366004614f82565b611a99565b34801561074357600080fd5b50610506610752366004614f9b565b611b05565b34801561076357600080fd5b50610569610772366004614f82565b611c21565b34801561078357600080fd5b50610569610792366004614f82565b611c8d565b3480156107a357600080fd5b50600654610506565b610569611cf9565b3480156107c057600080fd5b506105696107cf366004614ff7565b611db8565b3480156107e057600080fd5b506105696107ef366004614f9b565b611dd3565b34801561080057600080fd5b5061056961080f366004614fdc565b61231f565b34801561082057600080fd5b5061056961082f366004614fdc565b6123c1565b34801561084057600080fd5b5061050661084f366004614f82565b612464565b34801561086057600080fd5b5061056961086f366004614fdc565b6124c1565b34801561088057600080fd5b5061050660185481565b34801561089657600080fd5b506105696108a5366004614fdc565b612560565b3480156108b657600080fd5b506105ad6108c5366004614f82565b6125fe565b3480156108d657600080fd5b506105696108e5366004614f9b565b6126ab565b3480156108f657600080fd5b50610580612bd8565b34801561090b57600080fd5b5061050661091a366004614d85565b73ffffffffffffffffffffffffffffffffffffffff1660009081526021602052604090205490565b34801561094e57600080fd5b5061050661095d366004614d85565b612c66565b34801561096e57600080fd5b50610569612d65565b34801561098357600080fd5b50610569610992366004614d85565b612dd8565b3480156109a357600080fd5b50601b546105399062010000900460ff1681565b3480156109c357600080fd5b5061050660195481565b3480156109d957600080fd5b506109ed6109e8366004614d85565b612e69565b6040516105109190615038565b348015610a0657600080fd5b50610569610a15366004614fdc565b612f63565b348015610a2657600080fd5b506105ad610a35366004614f82565b612ffb565b348015610a4657600080fd5b50610569610a55366004614fdc565b613038565b348015610a6657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166105ad565b348015610a9157600080fd5b50610569610aa0366004614f82565b6130d8565b348015610ab157600080fd5b50610569610ac0366004614f82565b613144565b348015610ad157600080fd5b506105806131b0565b348015610ae657600080fd5b50610506610af5366004614d85565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b348015610b2957600080fd5b50610506601a5481565b610569610b41366004614f82565b6131bf565b348015610b5257600080fd5b50601b5461053990610100900460ff1681565b348015610b7157600080fd5b50610569610b8036600461507c565b61347a565b348015610b9157600080fd5b50610569610ba0366004614f9b565b613577565b348015610bb157600080fd5b50610569610bc03660046150b1565b613aa5565b348015610bd157600080fd5b50610506610be0366004614d85565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f602052604090205490565b348015610c1457600080fd5b50610569610c23366004614d85565b613b33565b348015610c3457600080fd5b50601b54610539906601000000000000900460ff1681565b348015610c5857600080fd5b50610580610c67366004614f82565b613bc4565b348015610c7857600080fd5b50610506610c87366004614d85565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b348015610cbb57600080fd5b50610506610cca366004614d85565b601c6020526000908152604090205481565b348015610ce857600080fd5b50601b546105399065010000000000900460ff1681565b348015610d0b57600080fd5b50610506600d5481565b348015610d2157600080fd5b50610506610d30366004614d85565b613c77565b348015610d4157600080fd5b50610569610d50366004615131565b613d05565b348015610d6157600080fd5b50600754610506565b348015610d7657600080fd5b50601b5461053990640100000000900460ff1681565b348015610d9857600080fd5b50610539610da73660046151a6565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b610569610df0366004614f82565b613dde565b348015610e0157600080fd5b50610569610e10366004614d85565b613fc8565b348015610e2157600080fd5b50601b54610539906301000000900460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610e8c5750610e8c826140c1565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610efe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051610f1190600c906020840190614cd3565b5050565b606060008054610f24906151df565b80601f0160208091040260200160405190810160405280929190818152602001828054610f50906151df565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b5050505050905090565b6000610fb2826141a4565b6110245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610ef5565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061105860025490565b9050600061106533612c66565b336000818152601d60205260408082205490517efdd58e00000000000000000000000000000000000000000000000000000000815260048101939093527f9b318f4ce0672a3f1ac661d9739a947f38b863a00000000000000100000005dc602484018190529394509273495f947276749ce646f68ac8c248420045cb7b5e9290918391829062fdd58e90604401602060405180830381865afa15801561110f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111339190615233565b118061113f5750600084115b61118b5760405162461bcd60e51b815260206004820152601a60248201527f446964206e6f7420706173732074686520676174652c207965740000000000006044820152606401610ef5565b600d54611198888861527b565b11156111e65760405162461bcd60e51b815260206004820152600860248201527f536f6c64206f75740000000000000000000000000000000000000000000000006044820152606401610ef5565b600087116112365760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610ef5565b86600f546112449190615293565b3410156112935760405162461bcd60e51b815260206004820152601360248201527f45544820696e7075742069732077726f6e672e000000000000000000000000006044820152606401610ef5565b600e548711156112e55760405162461bcd60e51b815260206004820152600a60248201527f4d696e74206c6573732e000000000000000000000000000000000000000000006044820152606401610ef5565b600e546112f2888761527b565b11156113405760405162461bcd60e51b815260206004820152601860248201527f546869732077616c6c6574206973206d61786564206f757400000000000000006044820152606401610ef5565b83156113e15760005b878110156113db57601b54610100900460ff166113a85760405162461bcd60e51b815260206004820152601260248201527f546865206761746520697320636c6f73656400000000000000000000000000006044820152606401610ef5565b6113cb336113b6838a61527b565b60405180602001604052806000815250614208565b6113d4816152d0565b9050611349565b506114d8565b600e546013546113f19190615293565b60175411156114425760405162461bcd60e51b815260206004820152601b60248201527f496e64756374696f6e205068617365206d6178207265616368656400000000006044820152606401610ef5565b601b5460ff166114945760405162461bcd60e51b815260206004820152601260248201527f546865206761746520697320636c6f73656400000000000000000000000000006044820152606401610ef5565b60005b878110156114d6576114ad336113b6838a61527b565b6001601760008282546114c0919061527b565b909155506114cf9050816152d0565b9050611497565b505b50505050505050565b60006114ec826125fe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115905760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610ef5565b3373ffffffffffffffffffffffffffffffffffffffff821614806115b957506115b98133610da7565b61162b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ef5565b6116358383614291565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146116a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b73ffffffffffffffffffffffffffffffffffffffff166000908152602080526040902060019055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146117315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b8054911515640100000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600860205260409020546118035760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610ef5565b600060075447611813919061527b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602090815260408083205460065460089093529083205493945091926118579085615293565b6118619190615338565b61186b919061534c565b9050806118e05760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610ef5565b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205461191190829061527b565b73ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205560075461194590829061527b565b6007556119528382614331565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6119b03382614457565b611a225760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ef5565b611635838383614593565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601455565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601555565b6000611b1083612c66565b8210611b5e5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610ef5565b6000805b600254811015611bd85760028181548110611b7f57611b7f615363565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff86811691161415611bc85783821415611bbc579150610e8c9050565b611bc5826152d0565b91505b611bd1816152d0565b9050611b62565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610ef5565b60055473ffffffffffffffffffffffffffffffffffffffff163314611c885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b600e55565b60055473ffffffffffffffffffffffffffffffffffffffff163314611cf45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601355565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b604051600090339047908381818185875af1925050503d8060008114611da2576040519150601f19603f3d011682016040523d82523d6000602084013e611da7565b606091505b5050905080611db557600080fd5b50565b61163583838360405180602001604052806000815250613aa5565b601b54640100000000900460ff16611e2d5760405162461bcd60e51b815260206004820152601560248201527f5068617365206973206e6f74206c6976652079657400000000000000000000006044820152606401610ef5565b336000908152601e602052604090205415611e8a5760405162461bcd60e51b815260206004820152601060248201527f416c7265616479205265736572766564000000000000000000000000000000006044820152606401610ef5565b6014546018541115611ede5760405162461bcd60e51b815260206004820152601860248201527f5068617365206c696d697420686173206265656e2068697400000000000000006044820152606401610ef5565b80610483141561207d57601280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa158015611f81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa59190615233565b905060008111611fb457600080fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152601f60205260409020546120265760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b600e54336000908152601c6020908152604080832093909355601e905290812080546001929061205790849061527b565b92505081905550600160186000828254612071919061527b565b90915550610f11915050565b806102d114156121c457601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa158015612120573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121449190615233565b90506000811161215357600080fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526020805260409020546120265760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b806014141561230b57601180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa158015612266573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061228a9190615233565b90506000811161229957600080fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152602160205260409020546120265760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b336000908152601c60205260408120555050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146123865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b805491151565010000000000027fffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146124285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b80549115156601000000000000027fffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffff909216919091179055565b600061246f60025490565b82106124bd5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610ef5565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff1633146125285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146125c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6000806002838154811061261457612614615363565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610e8c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610ef5565b601b5465010000000000900460ff166127065760405162461bcd60e51b815260206004820152601560248201527f5068617365206973206e6f74206c6976652079657400000000000000000000006044820152606401610ef5565b336000908152601e6020526040902054156127635760405162461bcd60e51b815260206004820152601060248201527f416c7265616479205265736572766564000000000000000000000000000000006044820152606401610ef5565b60155460195411156127b75760405162461bcd60e51b815260206004820152601860248201527f5068617365206c696d697420686173206265656e2068697400000000000000006044820152606401610ef5565b80610483141561294a57601280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa15801561285a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287e9190615233565b90506000811161288d57600080fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152601f60205260409020546128ff5760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b600e54336000908152601c6020908152604080832093909355601e905290812080546001929061293090849061527b565b92505081905550600160196000828254612071919061527b565b806102d11415612a9157601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa1580156129ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a119190615233565b905060008111612a2057600080fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526020805260409020546128ff5760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b806014141561230b57601180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa158015612b33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b579190615233565b905060008111612b6657600080fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152602160205260409020546128ff5760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b600c8054612be5906151df565b80601f0160208091040260200160405190810160405280929190818152602001828054612c11906151df565b8015612c5e5780601f10612c3357610100808354040283529160200191612c5e565b820191906000526020600020905b815481529060010190602001808311612c4157829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216612cf15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610ef5565b600254600090815b81811015612d5c5760028181548110612d1457612d14615363565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff86811691161415612d4c57612d49836152d0565b92505b612d55816152d0565b9050612cf9565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612dcc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b612dd66000614762565b565b60055473ffffffffffffffffffffffffffffffffffffffff163314612e3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f6020526040902060019055565b6060612e7482612c66565b600010612ec35760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610ef5565b6000612ece83612c66565b905060008167ffffffffffffffff811115612eeb57612eeb614ded565b604051908082528060200260200182016040528015612f14578160200160208202803683370190505b50905060005b82811015612f5b57612f2c8582611b05565b828281518110612f3e57612f3e615363565b602090810291909101015280612f53816152d0565b915050612f1a565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612fca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6000600a828154811061301057613010615363565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461309f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b80549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461313f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601655565b60055473ffffffffffffffffffffffffffffffffffffffff1633146131ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b600f55565b606060018054610f24906151df565b60006131ca60025490565b336000818152601c6020526040812054929350906131e790612c66565b9050600082116132395760405162461bcd60e51b815260206004820152601a60248201527f446964206e6f7420706173732074686520676174652c207965740000000000006044820152606401610ef5565b601b5462010000900460ff166132915760405162461bcd60e51b815260206004820152601260248201527f546865206761746520697320636c6f73656400000000000000000000000000006044820152606401610ef5565b600d5461329e858561527b565b11156132ec5760405162461bcd60e51b815260206004820152600860248201527f536f6c64206f75740000000000000000000000000000000000000000000000006044820152606401610ef5565b6000841161333c5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610ef5565b83600f5461334a9190615293565b3410156133995760405162461bcd60e51b815260206004820152601360248201527f45544820696e7075742069732077726f6e672e000000000000000000000000006044820152606401610ef5565b600e548411156133eb5760405162461bcd60e51b815260206004820152600a60248201527f4d696e74206c6573732e000000000000000000000000000000000000000000006044820152606401610ef5565b600e546133f8858361527b565b11156134465760405162461bcd60e51b815260206004820152601860248201527f546869732077616c6c6574206973206d61786564206f757400000000000000006044820152606401610ef5565b6000915060005b8481101561347357613463336113b6838761527b565b61346c816152d0565b905061344d565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff82163314156134e05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ef5565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601b546601000000000000900460ff166135d35760405162461bcd60e51b815260206004820152601560248201527f5068617365206973206e6f74206c6976652079657400000000000000000000006044820152606401610ef5565b336000908152601e6020526040902054156136305760405162461bcd60e51b815260206004820152601060248201527f416c7265616479205265736572766564000000000000000000000000000000006044820152606401610ef5565b601654601a5411156136845760405162461bcd60e51b815260206004820152601860248201527f5068617365206c696d697420686173206265656e2068697400000000000000006044820152606401610ef5565b80610483141561381757601280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa158015613727573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374b9190615233565b90506000811161375a57600080fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152601f60205260409020546137cc5760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b600e54336000908152601c6020908152604080832093909355601e90529081208054600192906137fd90849061527b565b925050819055506001601a6000828254612071919061527b565b806102d1141561395e57601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa1580156138ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138de9190615233565b9050600081116138ed57600080fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526020805260409020546137cc5760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b806014141561230b57601180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa158015613a00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a249190615233565b905060008111613a3357600080fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152602160205260409020546137cc5760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b613aaf3383614457565b613b215760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ef5565b613b2d848484846147d9565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314613b9a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b73ffffffffffffffffffffffffffffffffffffffff16600090815260216020526040902060019055565b6060613bcf826141a4565b613c1b5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610ef5565b6000613c25614862565b90506000815111613c455760405180602001604052806000815250613c70565b80613c4f84614871565b604051602001613c60929190615392565b6040516020818303038152906040525b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff8216613cdc5760405162461bcd60e51b815260206004820152600c60248201527f5a65726f206164647265737300000000000000000000000000000000000000006044820152606401610ef5565b5073ffffffffffffffffffffffffffffffffffffffff166000908152601e602052604090205490565b60055473ffffffffffffffffffffffffffffffffffffffff163314613d6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b60005b8181101561163557600e54601d6000858585818110613d9057613d90615363565b9050602002016020810190613da59190614d85565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205580613dd6816152d0565b915050613d6f565b6000613de960025490565b601b549091506301000000900460ff16613e455760405162461bcd60e51b815260206004820152601260248201527f546865206761746520697320636c6f73656400000000000000000000000000006044820152606401610ef5565b600d54613e52838361527b565b1115613ea05760405162461bcd60e51b815260206004820152600860248201527f536f6c64206f75740000000000000000000000000000000000000000000000006044820152606401610ef5565b60008211613ef05760405162461bcd60e51b815260206004820152601160248201527f4d696e74206d6f7265207468616e20302e0000000000000000000000000000006044820152606401610ef5565b81600f54613efe9190615293565b341015613f4d5760405162461bcd60e51b815260206004820152601360248201527f45544820696e7075742069732077726f6e672e000000000000000000000000006044820152606401610ef5565b600e54821115613f9f5760405162461bcd60e51b815260206004820152600a60248201527f4d696e74206c6573732e000000000000000000000000000000000000000000006044820152606401610ef5565b60005b8281101561163557613fb8336113b6838561527b565b613fc1816152d0565b9050613fa2565b60055473ffffffffffffffffffffffffffffffffffffffff16331461402f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b73ffffffffffffffffffffffffffffffffffffffff81166140b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ef5565b611db581614762565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061415457507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610e8c57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610e8c565b60025460009082108015610e8c5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106141de576141de615363565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b61421283836149a3565b61421f6000848484614afd565b6116355760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ef5565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906142eb826125fe565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156143815760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610ef5565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d80600081146143db576040519150601f19603f3d011682016040523d82523d6000602084013e6143e0565b606091505b50509050806116355760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ef5565b6000614462826141a4565b6144d45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610ef5565b60006144df836125fe565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061454e57508373ffffffffffffffffffffffffffffffffffffffff1661453684610fa7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061458b575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166145b3826125fe565b73ffffffffffffffffffffffffffffffffffffffff161461463c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610ef5565b73ffffffffffffffffffffffffffffffffffffffff82166146c45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ef5565b6146cf600082614291565b81600282815481106146e3576146e3615363565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6147e4848484614593565b6147f084848484614afd565b613b2d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ef5565b6060600c8054610f24906151df565b6060816148b157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156148db57806148c5816152d0565b91506148d49050600a83615338565b91506148b5565b60008167ffffffffffffffff8111156148f6576148f6614ded565b6040519080825280601f01601f191660200182016040528015614920576020820181803683370190505b5090505b841561458b5761493560018361534c565b9150614942600a866153c1565b61494d90603061527b565b60f81b81838151811061496257614962615363565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061499c600a86615338565b9450614924565b73ffffffffffffffffffffffffffffffffffffffff8216614a065760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ef5565b614a0f816141a4565b15614a5c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ef5565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15614cc8576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290614b749033908990889088906004016153d5565b6020604051808303816000875af1925050508015614bcd575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252614bca9181019061541e565b60015b614c7d573d808015614bfb576040519150601f19603f3d011682016040523d82523d6000602084013e614c00565b606091505b508051614c755760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ef5565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a020000000000000000000000000000000000000000000000000000000014905061458b565b506001949350505050565b828054614cdf906151df565b90600052602060002090601f016020900481019282614d015760008555614d47565b82601f10614d1a57805160ff1916838001178555614d47565b82800160010185558215614d47579182015b82811115614d47578251825591602001919060010190614d2c565b506124bd9291505b808211156124bd5760008155600101614d4f565b73ffffffffffffffffffffffffffffffffffffffff81168114611db557600080fd5b600060208284031215614d9757600080fd5b8135613c7081614d63565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611db557600080fd5b600060208284031215614de257600080fd5b8135613c7081614da2565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115614e3757614e37614ded565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715614e7d57614e7d614ded565b81604052809350858152868686011115614e9657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215614ec257600080fd5b813567ffffffffffffffff811115614ed957600080fd5b8201601f81018413614eea57600080fd5b61458b84823560208401614e1c565b60005b83811015614f14578181015183820152602001614efc565b83811115613b2d5750506000910152565b60008151808452614f3d816020860160208601614ef9565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000613c706020830184614f25565b600060208284031215614f9457600080fd5b5035919050565b60008060408385031215614fae57600080fd5b8235614fb981614d63565b946020939093013593505050565b80358015158114614fd757600080fd5b919050565b600060208284031215614fee57600080fd5b613c7082614fc7565b60008060006060848603121561500c57600080fd5b833561501781614d63565b9250602084013561502781614d63565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b8181101561507057835183529284019291840191600101615054565b50909695505050505050565b6000806040838503121561508f57600080fd5b823561509a81614d63565b91506150a860208401614fc7565b90509250929050565b600080600080608085870312156150c757600080fd5b84356150d281614d63565b935060208501356150e281614d63565b925060408501359150606085013567ffffffffffffffff81111561510557600080fd5b8501601f8101871361511657600080fd5b61512587823560208401614e1c565b91505092959194509250565b6000806020838503121561514457600080fd5b823567ffffffffffffffff8082111561515c57600080fd5b818501915085601f83011261517057600080fd5b81358181111561517f57600080fd5b8660208260051b850101111561519457600080fd5b60209290920196919550909350505050565b600080604083850312156151b957600080fd5b82356151c481614d63565b915060208301356151d481614d63565b809150509250929050565b600181811c908216806151f357607f821691505b6020821081141561522d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60006020828403121561524557600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561528e5761528e61524c565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152cb576152cb61524c565b500290565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153025761530261524c565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261534757615347615309565b500490565b60008282101561535e5761535e61524c565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600083516153a4818460208801614ef9565b8351908301906153b8818360208801614ef9565b01949350505050565b6000826153d0576153d0615309565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526154146080830184614f25565b9695505050505050565b60006020828403121561543057600080fd5b8151613c7081614da256fea26469706673582212208d9f0b5801fff83c0bb9308ef89ac5abb4fcc0dc94fd66ac3796cba06386c69264736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a496c6c756d696e6174690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055472757468000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d66426e7548674d454b414e72446a4e396b3448555543554562786574576f7862386f69333164474b743243472f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106104695760003560e01c8063715018a611610243578063ac77d32211610143578063d5abeb01116100bb578063e7c562291161008a578063efd0cbf91161006f578063efd0cbf914610de2578063f2fde38b14610df5578063f91798b114610e1557600080fd5b8063e7c5622914610d6a578063e985e9c514610d8c57600080fd5b8063d5abeb0114610cff578063da9425e214610d15578063e00cd18114610d35578063e33b7de314610d5557600080fd5b8063c3b0157b11610112578063ce7c2ac2116100f7578063ce7c2ac214610c6c578063d467157e14610caf578063d4deb3b614610cdc57600080fd5b8063c3b0157b14610c28578063c87b56dd14610c4c57600080fd5b8063ac77d32214610b85578063b88d4fde14610ba5578063bd1de37a14610bc5578063bf2e49e814610c0857600080fd5b80638da5cb5b116101d65780639852595c116101a55780639a5d140b1161018a5780639a5d140b14610b335780639ddf7ad314610b46578063a22cb46514610b6557600080fd5b80639852595c14610ada578063999023ce14610b1d57600080fd5b80638da5cb5b14610a5a5780639039906214610a8557806391b7f5ed14610aa557806395d89b4114610ac557600080fd5b80638462151c116102125780638462151c146109cd57806388557bbd146109fa5780638b83209b14610a1a5780638d3f070914610a3a57600080fd5b8063715018a6146109625780637b359797146109775780637f4ef98f1461099757806382a8e1ec146109b757600080fd5b80632f745c59116103695780634f6ccce7116102e15780636352211e116102b05780636c0360eb116102955780636c0360eb146108ea5780636d849f79146108ff57806370a082311461094257600080fd5b80636352211e146108aa57806366919e9e146108ca57600080fd5b80634f6ccce7146108345780634fd7cd33146108545780635d22f75b146108745780635fd7fb7f1461088a57600080fd5b80633ccfd60b11610338578063444935071161031d57806344493507146107d45780634aeacd0a146107f45780634bf8e8721461081457600080fd5b80633ccfd60b146107ac57806342842e0e146107b457600080fd5b80632f745c59146107375780632fc2e29c1461075757806338c1384f146107775780633a98ef391461079757600080fd5b80631497b518116103fc5780631e3ba285116103cb57806323b872dd116103b057806323b872dd146106d757806326953669146106f75780632a40bb481461071757600080fd5b80631e3ba285146106a757806323997c89146106bd57600080fd5b80631497b5181461062557806318160ddd14610645578063191655871461065a5780631d6086591461067a57600080fd5b8063081812fc11610438578063081812fc1461058d578063082b2a4d146105d2578063095ea7b3146105e5578063132a8f031461060557600080fd5b80630137d13e146104c457806301ffc9a71461051957806302fe53051461054957806306fdde031461056b57600080fd5b366104bf577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be770336040805173ffffffffffffffffffffffffffffffffffffffff90921682523460208301520160405180910390a1005b600080fd5b3480156104d057600080fd5b506105066104df366004614d85565b73ffffffffffffffffffffffffffffffffffffffff16600090815260208052604090205490565b6040519081526020015b60405180910390f35b34801561052557600080fd5b50610539610534366004614dd0565b610e36565b6040519015158152602001610510565b34801561055557600080fd5b50610569610564366004614eb0565b610e92565b005b34801561057757600080fd5b50610580610f15565b6040516105109190614f6f565b34801561059957600080fd5b506105ad6105a8366004614f82565b610fa7565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610510565b6105696105e0366004614f82565b61104d565b3480156105f157600080fd5b50610569610600366004614f9b565b6114e1565b34801561061157600080fd5b50610569610620366004614d85565b61163a565b34801561063157600080fd5b50610569610640366004614fdc565b6116ca565b34801561065157600080fd5b50600254610506565b34801561066657600080fd5b50610569610675366004614d85565b61176b565b34801561068657600080fd5b50610506610695366004614d85565b601d6020526000908152604090205481565b3480156106b357600080fd5b5061050660175481565b3480156106c957600080fd5b50601b546105399060ff1681565b3480156106e357600080fd5b506105696106f2366004614ff7565b6119a6565b34801561070357600080fd5b50610569610712366004614f82565b611a2d565b34801561072357600080fd5b50610569610732366004614f82565b611a99565b34801561074357600080fd5b50610506610752366004614f9b565b611b05565b34801561076357600080fd5b50610569610772366004614f82565b611c21565b34801561078357600080fd5b50610569610792366004614f82565b611c8d565b3480156107a357600080fd5b50600654610506565b610569611cf9565b3480156107c057600080fd5b506105696107cf366004614ff7565b611db8565b3480156107e057600080fd5b506105696107ef366004614f9b565b611dd3565b34801561080057600080fd5b5061056961080f366004614fdc565b61231f565b34801561082057600080fd5b5061056961082f366004614fdc565b6123c1565b34801561084057600080fd5b5061050661084f366004614f82565b612464565b34801561086057600080fd5b5061056961086f366004614fdc565b6124c1565b34801561088057600080fd5b5061050660185481565b34801561089657600080fd5b506105696108a5366004614fdc565b612560565b3480156108b657600080fd5b506105ad6108c5366004614f82565b6125fe565b3480156108d657600080fd5b506105696108e5366004614f9b565b6126ab565b3480156108f657600080fd5b50610580612bd8565b34801561090b57600080fd5b5061050661091a366004614d85565b73ffffffffffffffffffffffffffffffffffffffff1660009081526021602052604090205490565b34801561094e57600080fd5b5061050661095d366004614d85565b612c66565b34801561096e57600080fd5b50610569612d65565b34801561098357600080fd5b50610569610992366004614d85565b612dd8565b3480156109a357600080fd5b50601b546105399062010000900460ff1681565b3480156109c357600080fd5b5061050660195481565b3480156109d957600080fd5b506109ed6109e8366004614d85565b612e69565b6040516105109190615038565b348015610a0657600080fd5b50610569610a15366004614fdc565b612f63565b348015610a2657600080fd5b506105ad610a35366004614f82565b612ffb565b348015610a4657600080fd5b50610569610a55366004614fdc565b613038565b348015610a6657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff166105ad565b348015610a9157600080fd5b50610569610aa0366004614f82565b6130d8565b348015610ab157600080fd5b50610569610ac0366004614f82565b613144565b348015610ad157600080fd5b506105806131b0565b348015610ae657600080fd5b50610506610af5366004614d85565b73ffffffffffffffffffffffffffffffffffffffff1660009081526009602052604090205490565b348015610b2957600080fd5b50610506601a5481565b610569610b41366004614f82565b6131bf565b348015610b5257600080fd5b50601b5461053990610100900460ff1681565b348015610b7157600080fd5b50610569610b8036600461507c565b61347a565b348015610b9157600080fd5b50610569610ba0366004614f9b565b613577565b348015610bb157600080fd5b50610569610bc03660046150b1565b613aa5565b348015610bd157600080fd5b50610506610be0366004614d85565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f602052604090205490565b348015610c1457600080fd5b50610569610c23366004614d85565b613b33565b348015610c3457600080fd5b50601b54610539906601000000000000900460ff1681565b348015610c5857600080fd5b50610580610c67366004614f82565b613bc4565b348015610c7857600080fd5b50610506610c87366004614d85565b73ffffffffffffffffffffffffffffffffffffffff1660009081526008602052604090205490565b348015610cbb57600080fd5b50610506610cca366004614d85565b601c6020526000908152604090205481565b348015610ce857600080fd5b50601b546105399065010000000000900460ff1681565b348015610d0b57600080fd5b50610506600d5481565b348015610d2157600080fd5b50610506610d30366004614d85565b613c77565b348015610d4157600080fd5b50610569610d50366004615131565b613d05565b348015610d6157600080fd5b50600754610506565b348015610d7657600080fd5b50601b5461053990640100000000900460ff1681565b348015610d9857600080fd5b50610539610da73660046151a6565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b610569610df0366004614f82565b613dde565b348015610e0157600080fd5b50610569610e10366004614d85565b613fc8565b348015610e2157600080fd5b50601b54610539906301000000900460ff1681565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610e8c5750610e8c826140c1565b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610efe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051610f1190600c906020840190614cd3565b5050565b606060008054610f24906151df565b80601f0160208091040260200160405190810160405280929190818152602001828054610f50906151df565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b5050505050905090565b6000610fb2826141a4565b6110245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610ef5565b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061105860025490565b9050600061106533612c66565b336000818152601d60205260408082205490517efdd58e00000000000000000000000000000000000000000000000000000000815260048101939093527f9b318f4ce0672a3f1ac661d9739a947f38b863a00000000000000100000005dc602484018190529394509273495f947276749ce646f68ac8c248420045cb7b5e9290918391829062fdd58e90604401602060405180830381865afa15801561110f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111339190615233565b118061113f5750600084115b61118b5760405162461bcd60e51b815260206004820152601a60248201527f446964206e6f7420706173732074686520676174652c207965740000000000006044820152606401610ef5565b600d54611198888861527b565b11156111e65760405162461bcd60e51b815260206004820152600860248201527f536f6c64206f75740000000000000000000000000000000000000000000000006044820152606401610ef5565b600087116112365760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610ef5565b86600f546112449190615293565b3410156112935760405162461bcd60e51b815260206004820152601360248201527f45544820696e7075742069732077726f6e672e000000000000000000000000006044820152606401610ef5565b600e548711156112e55760405162461bcd60e51b815260206004820152600a60248201527f4d696e74206c6573732e000000000000000000000000000000000000000000006044820152606401610ef5565b600e546112f2888761527b565b11156113405760405162461bcd60e51b815260206004820152601860248201527f546869732077616c6c6574206973206d61786564206f757400000000000000006044820152606401610ef5565b83156113e15760005b878110156113db57601b54610100900460ff166113a85760405162461bcd60e51b815260206004820152601260248201527f546865206761746520697320636c6f73656400000000000000000000000000006044820152606401610ef5565b6113cb336113b6838a61527b565b60405180602001604052806000815250614208565b6113d4816152d0565b9050611349565b506114d8565b600e546013546113f19190615293565b60175411156114425760405162461bcd60e51b815260206004820152601b60248201527f496e64756374696f6e205068617365206d6178207265616368656400000000006044820152606401610ef5565b601b5460ff166114945760405162461bcd60e51b815260206004820152601260248201527f546865206761746520697320636c6f73656400000000000000000000000000006044820152606401610ef5565b60005b878110156114d6576114ad336113b6838a61527b565b6001601760008282546114c0919061527b565b909155506114cf9050816152d0565b9050611497565b505b50505050505050565b60006114ec826125fe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115905760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610ef5565b3373ffffffffffffffffffffffffffffffffffffffff821614806115b957506115b98133610da7565b61162b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ef5565b6116358383614291565b505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146116a15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b73ffffffffffffffffffffffffffffffffffffffff166000908152602080526040902060019055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146117315760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b8054911515640100000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffff909216919091179055565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600860205260409020546118035760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201527f73686172657300000000000000000000000000000000000000000000000000006064820152608401610ef5565b600060075447611813919061527b565b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602090815260408083205460065460089093529083205493945091926118579085615293565b6118619190615338565b61186b919061534c565b9050806118e05760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201527f647565207061796d656e740000000000000000000000000000000000000000006064820152608401610ef5565b73ffffffffffffffffffffffffffffffffffffffff831660009081526009602052604090205461191190829061527b565b73ffffffffffffffffffffffffffffffffffffffff841660009081526009602052604090205560075461194590829061527b565b6007556119528382614331565b6040805173ffffffffffffffffffffffffffffffffffffffff85168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b6119b03382614457565b611a225760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ef5565b611635838383614593565b60055473ffffffffffffffffffffffffffffffffffffffff163314611a945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601455565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b005760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601555565b6000611b1083612c66565b8210611b5e5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610ef5565b6000805b600254811015611bd85760028181548110611b7f57611b7f615363565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff86811691161415611bc85783821415611bbc579150610e8c9050565b611bc5826152d0565b91505b611bd1816152d0565b9050611b62565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610ef5565b60055473ffffffffffffffffffffffffffffffffffffffff163314611c885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b600e55565b60055473ffffffffffffffffffffffffffffffffffffffff163314611cf45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601355565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d605760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b604051600090339047908381818185875af1925050503d8060008114611da2576040519150601f19603f3d011682016040523d82523d6000602084013e611da7565b606091505b5050905080611db557600080fd5b50565b61163583838360405180602001604052806000815250613aa5565b601b54640100000000900460ff16611e2d5760405162461bcd60e51b815260206004820152601560248201527f5068617365206973206e6f74206c6976652079657400000000000000000000006044820152606401610ef5565b336000908152601e602052604090205415611e8a5760405162461bcd60e51b815260206004820152601060248201527f416c7265616479205265736572766564000000000000000000000000000000006044820152606401610ef5565b6014546018541115611ede5760405162461bcd60e51b815260206004820152601860248201527f5068617365206c696d697420686173206265656e2068697400000000000000006044820152606401610ef5565b80610483141561207d57601280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa158015611f81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fa59190615233565b905060008111611fb457600080fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152601f60205260409020546120265760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b600e54336000908152601c6020908152604080832093909355601e905290812080546001929061205790849061527b565b92505081905550600160186000828254612071919061527b565b90915550610f11915050565b806102d114156121c457601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa158015612120573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121449190615233565b90506000811161215357600080fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526020805260409020546120265760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b806014141561230b57601180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa158015612266573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061228a9190615233565b90506000811161229957600080fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152602160205260409020546120265760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b336000908152601c60205260408120555050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146123865760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b805491151565010000000000027fffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146124285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b80549115156601000000000000027fffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffff909216919091179055565b600061246f60025490565b82106124bd5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610ef5565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff1633146125285760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146125c75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b8054911515610100027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909216919091179055565b6000806002838154811061261457612614615363565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610e8c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610ef5565b601b5465010000000000900460ff166127065760405162461bcd60e51b815260206004820152601560248201527f5068617365206973206e6f74206c6976652079657400000000000000000000006044820152606401610ef5565b336000908152601e6020526040902054156127635760405162461bcd60e51b815260206004820152601060248201527f416c7265616479205265736572766564000000000000000000000000000000006044820152606401610ef5565b60155460195411156127b75760405162461bcd60e51b815260206004820152601860248201527f5068617365206c696d697420686173206265656e2068697400000000000000006044820152606401610ef5565b80610483141561294a57601280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa15801561285a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061287e9190615233565b90506000811161288d57600080fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152601f60205260409020546128ff5760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b600e54336000908152601c6020908152604080832093909355601e905290812080546001929061293090849061527b565b92505081905550600160196000828254612071919061527b565b806102d11415612a9157601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa1580156129ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a119190615233565b905060008111612a2057600080fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526020805260409020546128ff5760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b806014141561230b57601180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa158015612b33573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b579190615233565b905060008111612b6657600080fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152602160205260409020546128ff5760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b600c8054612be5906151df565b80601f0160208091040260200160405190810160405280929190818152602001828054612c11906151df565b8015612c5e5780601f10612c3357610100808354040283529160200191612c5e565b820191906000526020600020905b815481529060010190602001808311612c4157829003601f168201915b505050505081565b600073ffffffffffffffffffffffffffffffffffffffff8216612cf15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610ef5565b600254600090815b81811015612d5c5760028181548110612d1457612d14615363565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff86811691161415612d4c57612d49836152d0565b92505b612d55816152d0565b9050612cf9565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612dcc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b612dd66000614762565b565b60055473ffffffffffffffffffffffffffffffffffffffff163314612e3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b73ffffffffffffffffffffffffffffffffffffffff166000908152601f6020526040902060019055565b6060612e7482612c66565b600010612ec35760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610ef5565b6000612ece83612c66565b905060008167ffffffffffffffff811115612eeb57612eeb614ded565b604051908082528060200260200182016040528015612f14578160200160208202803683370190505b50905060005b82811015612f5b57612f2c8582611b05565b828281518110612f3e57612f3e615363565b602090810291909101015280612f53816152d0565b915050612f1a565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612fca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b6000600a828154811061301057613010615363565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff1692915050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461309f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601b80549115156301000000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461313f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b601655565b60055473ffffffffffffffffffffffffffffffffffffffff1633146131ab5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b600f55565b606060018054610f24906151df565b60006131ca60025490565b336000818152601c6020526040812054929350906131e790612c66565b9050600082116132395760405162461bcd60e51b815260206004820152601a60248201527f446964206e6f7420706173732074686520676174652c207965740000000000006044820152606401610ef5565b601b5462010000900460ff166132915760405162461bcd60e51b815260206004820152601260248201527f546865206761746520697320636c6f73656400000000000000000000000000006044820152606401610ef5565b600d5461329e858561527b565b11156132ec5760405162461bcd60e51b815260206004820152600860248201527f536f6c64206f75740000000000000000000000000000000000000000000000006044820152606401610ef5565b6000841161333c5760405162461bcd60e51b815260206004820152601060248201527f4d696e74206d6f7265207468616e2030000000000000000000000000000000006044820152606401610ef5565b83600f5461334a9190615293565b3410156133995760405162461bcd60e51b815260206004820152601360248201527f45544820696e7075742069732077726f6e672e000000000000000000000000006044820152606401610ef5565b600e548411156133eb5760405162461bcd60e51b815260206004820152600a60248201527f4d696e74206c6573732e000000000000000000000000000000000000000000006044820152606401610ef5565b600e546133f8858361527b565b11156134465760405162461bcd60e51b815260206004820152601860248201527f546869732077616c6c6574206973206d61786564206f757400000000000000006044820152606401610ef5565b6000915060005b8481101561347357613463336113b6838761527b565b61346c816152d0565b905061344d565b5050505050565b73ffffffffffffffffffffffffffffffffffffffff82163314156134e05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ef5565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b601b546601000000000000900460ff166135d35760405162461bcd60e51b815260206004820152601560248201527f5068617365206973206e6f74206c6976652079657400000000000000000000006044820152606401610ef5565b336000908152601e6020526040902054156136305760405162461bcd60e51b815260206004820152601060248201527f416c7265616479205265736572766564000000000000000000000000000000006044820152606401610ef5565b601654601a5411156136845760405162461bcd60e51b815260206004820152601860248201527f5068617365206c696d697420686173206265656e2068697400000000000000006044820152606401610ef5565b80610483141561381757601280547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa158015613727573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374b9190615233565b90506000811161375a57600080fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152601f60205260409020546137cc5760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b600e54336000908152601c6020908152604080832093909355601e90529081208054600192906137fd90849061527b565b925050819055506001601a6000828254612071919061527b565b806102d1141561395e57601080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa1580156138ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138de9190615233565b9050600081116138ed57600080fd5b73ffffffffffffffffffffffffffffffffffffffff831660009081526020805260409020546137cc5760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b806014141561230b57601180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091556040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600091906370a0823190602401602060405180830381865afa158015613a00573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a249190615233565b905060008111613a3357600080fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152602160205260409020546137cc5760405162461bcd60e51b815260206004820152601a60248201527f436f6e7472616374206973206e6f7420676174656b65657065640000000000006044820152606401610ef5565b613aaf3383614457565b613b215760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ef5565b613b2d848484846147d9565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314613b9a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b73ffffffffffffffffffffffffffffffffffffffff16600090815260216020526040902060019055565b6060613bcf826141a4565b613c1b5760405162461bcd60e51b815260206004820152601160248201527f4e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006044820152606401610ef5565b6000613c25614862565b90506000815111613c455760405180602001604052806000815250613c70565b80613c4f84614871565b604051602001613c60929190615392565b6040516020818303038152906040525b9392505050565b600073ffffffffffffffffffffffffffffffffffffffff8216613cdc5760405162461bcd60e51b815260206004820152600c60248201527f5a65726f206164647265737300000000000000000000000000000000000000006044820152606401610ef5565b5073ffffffffffffffffffffffffffffffffffffffff166000908152601e602052604090205490565b60055473ffffffffffffffffffffffffffffffffffffffff163314613d6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b60005b8181101561163557600e54601d6000858585818110613d9057613d90615363565b9050602002016020810190613da59190614d85565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205580613dd6816152d0565b915050613d6f565b6000613de960025490565b601b549091506301000000900460ff16613e455760405162461bcd60e51b815260206004820152601260248201527f546865206761746520697320636c6f73656400000000000000000000000000006044820152606401610ef5565b600d54613e52838361527b565b1115613ea05760405162461bcd60e51b815260206004820152600860248201527f536f6c64206f75740000000000000000000000000000000000000000000000006044820152606401610ef5565b60008211613ef05760405162461bcd60e51b815260206004820152601160248201527f4d696e74206d6f7265207468616e20302e0000000000000000000000000000006044820152606401610ef5565b81600f54613efe9190615293565b341015613f4d5760405162461bcd60e51b815260206004820152601360248201527f45544820696e7075742069732077726f6e672e000000000000000000000000006044820152606401610ef5565b600e54821115613f9f5760405162461bcd60e51b815260206004820152600a60248201527f4d696e74206c6573732e000000000000000000000000000000000000000000006044820152606401610ef5565b60005b8281101561163557613fb8336113b6838561527b565b613fc1816152d0565b9050613fa2565b60055473ffffffffffffffffffffffffffffffffffffffff16331461402f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ef5565b73ffffffffffffffffffffffffffffffffffffffff81166140b85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ef5565b611db581614762565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061415457507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610e8c57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610e8c565b60025460009082108015610e8c5750600073ffffffffffffffffffffffffffffffffffffffff16600283815481106141de576141de615363565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b61421283836149a3565b61421f6000848484614afd565b6116355760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ef5565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff841690811790915581906142eb826125fe565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b804710156143815760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610ef5565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d80600081146143db576040519150601f19603f3d011682016040523d82523d6000602084013e6143e0565b606091505b50509050806116355760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610ef5565b6000614462826141a4565b6144d45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610ef5565b60006144df836125fe565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061454e57508373ffffffffffffffffffffffffffffffffffffffff1661453684610fa7565b73ffffffffffffffffffffffffffffffffffffffff16145b8061458b575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff166145b3826125fe565b73ffffffffffffffffffffffffffffffffffffffff161461463c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610ef5565b73ffffffffffffffffffffffffffffffffffffffff82166146c45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ef5565b6146cf600082614291565b81600282815481106146e3576146e3615363565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6147e4848484614593565b6147f084848484614afd565b613b2d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ef5565b6060600c8054610f24906151df565b6060816148b157505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156148db57806148c5816152d0565b91506148d49050600a83615338565b91506148b5565b60008167ffffffffffffffff8111156148f6576148f6614ded565b6040519080825280601f01601f191660200182016040528015614920576020820181803683370190505b5090505b841561458b5761493560018361534c565b9150614942600a866153c1565b61494d90603061527b565b60f81b81838151811061496257614962615363565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061499c600a86615338565b9450614924565b73ffffffffffffffffffffffffffffffffffffffff8216614a065760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ef5565b614a0f816141a4565b15614a5c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ef5565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15614cc8576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290614b749033908990889088906004016153d5565b6020604051808303816000875af1925050508015614bcd575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252614bca9181019061541e565b60015b614c7d573d808015614bfb576040519150601f19603f3d011682016040523d82523d6000602084013e614c00565b606091505b508051614c755760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ef5565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a020000000000000000000000000000000000000000000000000000000014905061458b565b506001949350505050565b828054614cdf906151df565b90600052602060002090601f016020900481019282614d015760008555614d47565b82601f10614d1a57805160ff1916838001178555614d47565b82800160010185558215614d47579182015b82811115614d47578251825591602001919060010190614d2c565b506124bd9291505b808211156124bd5760008155600101614d4f565b73ffffffffffffffffffffffffffffffffffffffff81168114611db557600080fd5b600060208284031215614d9757600080fd5b8135613c7081614d63565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611db557600080fd5b600060208284031215614de257600080fd5b8135613c7081614da2565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115614e3757614e37614ded565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715614e7d57614e7d614ded565b81604052809350858152868686011115614e9657600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215614ec257600080fd5b813567ffffffffffffffff811115614ed957600080fd5b8201601f81018413614eea57600080fd5b61458b84823560208401614e1c565b60005b83811015614f14578181015183820152602001614efc565b83811115613b2d5750506000910152565b60008151808452614f3d816020860160208601614ef9565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000613c706020830184614f25565b600060208284031215614f9457600080fd5b5035919050565b60008060408385031215614fae57600080fd5b8235614fb981614d63565b946020939093013593505050565b80358015158114614fd757600080fd5b919050565b600060208284031215614fee57600080fd5b613c7082614fc7565b60008060006060848603121561500c57600080fd5b833561501781614d63565b9250602084013561502781614d63565b929592945050506040919091013590565b6020808252825182820181905260009190848201906040850190845b8181101561507057835183529284019291840191600101615054565b50909695505050505050565b6000806040838503121561508f57600080fd5b823561509a81614d63565b91506150a860208401614fc7565b90509250929050565b600080600080608085870312156150c757600080fd5b84356150d281614d63565b935060208501356150e281614d63565b925060408501359150606085013567ffffffffffffffff81111561510557600080fd5b8501601f8101871361511657600080fd5b61512587823560208401614e1c565b91505092959194509250565b6000806020838503121561514457600080fd5b823567ffffffffffffffff8082111561515c57600080fd5b818501915085601f83011261517057600080fd5b81358181111561517f57600080fd5b8660208260051b850101111561519457600080fd5b60209290920196919550909350505050565b600080604083850312156151b957600080fd5b82356151c481614d63565b915060208301356151d481614d63565b809150509250929050565b600181811c908216806151f357607f821691505b6020821081141561522d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60006020828403121561524557600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000821982111561528e5761528e61524c565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152cb576152cb61524c565b500290565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153025761530261524c565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261534757615347615309565b500490565b60008282101561535e5761535e61524c565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600083516153a4818460208801614ef9565b8351908301906153b8818360208801614ef9565b01949350505050565b6000826153d0576153d0615309565b500690565b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526154146080830184614f25565b9695505050505050565b60006020828403121561543057600080fd5b8151613c7081614da256fea26469706673582212208d9f0b5801fff83c0bb9308ef89ac5abb4fcc0dc94fd66ac3796cba06386c69264736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a496c6c756d696e6174690000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055472757468000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d66426e7548674d454b414e72446a4e396b3448555543554562786574576f7862386f69333164474b743243472f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Illuminati
Arg [1] : _symbol (string): Truth
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/QmfBnuHgMEKANrDjN9k4HUUCUEbxetWoxb8oi31dGKt2CG/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 496c6c756d696e61746900000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 5472757468000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d66426e7548674d454b
Arg [9] : 414e72446a4e396b3448555543554562786574576f7862386f69333164474b74
Arg [10] : 3243472f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

738:12379:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2627:40:15;682:10:1;2627:40:15;;;218:42:18;206:55;;;188:74;;2657:9:15;293:2:18;278:18;;271:34;161:18;2627:40:15;;;;;;;738:12379:13;;;;;10798:155;;;;;;;;;;-1:-1:-1;10798:155:13;;;;;:::i;:::-;10905:41;;10879:7;10905:41;;;:24;:41;;;;;;;10798:155;;;;873:25:18;;;861:2;846:18;10798:155:13;;;;;;;;193:224:4;;;;;;;;;;-1:-1:-1;193:224:4;;;;;:::i;:::-;;:::i;:::-;;;1506:14:18;;1499:22;1481:41;;1469:2;1454:18;193:224:4;1341:187:18;11938:88:13;;;;;;;;;;-1:-1:-1;11938:88:13;;;;;:::i;:::-;;:::i;:::-;;1672:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2305:221::-;;;;;;;;;;-1:-1:-1;2305:221:3;;;;;:::i;:::-;;:::i;:::-;;;4045:42:18;4033:55;;;4015:74;;4003:2;3988:18;2305:221:3;3869:226:18;3521:1237:13;;;;;;:::i;:::-;;:::i;1888:411:3:-;;;;;;;;;;-1:-1:-1;1888:411:3;;;;;:::i;:::-;;:::i;10574:147:13:-;;;;;;;;;;-1:-1:-1;10574:147:13;;;;;:::i;:::-;;:::i;12383:76::-;;;;;;;;;;-1:-1:-1;12383:76:13;;;;;:::i;:::-;;:::i;1351:110:4:-;;;;;;;;;;-1:-1:-1;1439:7:4;:14;1351:110;;3791:600:15;;;;;;;;;;-1:-1:-1;3791:600:15;;;;;:::i;:::-;;:::i;1715:46:13:-;;;;;;;;;;-1:-1:-1;1715:46:13;;;;;:::i;:::-;;;;;;;;;;;;;;1255:36;;;;;;;;;;;;;;;;1417:35;;;;;;;;;;-1:-1:-1;1417:35:13;;;;;;;;3003:339:3;;;;;;;;;;-1:-1:-1;3003:339:3;;;;;:::i;:::-;;:::i;12711:82:13:-;;;;;;;;;;-1:-1:-1;12711:82:13;;;;;:::i;:::-;;:::i;12796:::-;;;;;;;;;;-1:-1:-1;12796:82:13;;;;;:::i;:::-;;:::i;423:499:4:-;;;;;;;;;;-1:-1:-1;423:499:4;;;;;:::i;:::-;;:::i;11849:86:13:-;;;;;;;;;;-1:-1:-1;11849:86:13;;;;;:::i;:::-;;:::i;12620:88::-;;;;;;;;;;-1:-1:-1;12620:88:13;;;;;:::i;:::-;;:::i;2752:89:15:-;;;;;;;;;;-1:-1:-1;2822:12:15;;2752:89;;12967:148:13;;;:::i;3348:185:3:-;;;;;;;;;;-1:-1:-1;3348:185:3;;;;;:::i;:::-;;:::i;5430:1472:13:-;;;;;;;;;;-1:-1:-1;5430:1472:13;;;;;:::i;:::-;;:::i;12462:76::-;;;;;;;;;;-1:-1:-1;12462:76:13;;;;;:::i;:::-;;:::i;12541:::-;;;;;;;;;;-1:-1:-1;12541:76:13;;;;;:::i;:::-;;:::i;1467:200:4:-;;;;;;;;;;-1:-1:-1;1467:200:4;;;;;:::i;:::-;;:::i;12296:84:13:-;;;;;;;;;;-1:-1:-1;12296:84:13;;;;;:::i;:::-;;:::i;1297:33::-;;;;;;;;;;;;;;;;12205:88;;;;;;;;;;-1:-1:-1;12205:88:13;;;;;:::i;:::-;;:::i;1427:239:3:-;;;;;;;;;;-1:-1:-1;1427:239:3;;;;;:::i;:::-;;:::i;6924:1472:13:-;;;;;;;;;;-1:-1:-1;6924:1472:13;;;;;:::i;:::-;;:::i;840:21::-;;;;;;;;;;;;;:::i;11224:153::-;;;;;;;;;;-1:-1:-1;11224:153:13;;;;;:::i;:::-;11330:40;;11304:7;11330:40;;;:23;:40;;;;;;;11224:153;1007:414:3;;;;;;;;;;-1:-1:-1;1007:414:3;;;;;:::i;:::-;;:::i;1650:94:14:-;;;;;;;;;;;;;:::i;10139:149:13:-;;;;;;;;;;-1:-1:-1;10139:149:13;;;;;:::i;:::-;;:::i;1493:33::-;;;;;;;;;;-1:-1:-1;1493:33:13;;;;;;;;;;;1333;;;;;;;;;;;;;;;;928:417:4;;;;;;;;;;-1:-1:-1;928:417:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;12114:88:13:-;;;;;;;;;;-1:-1:-1;12114:88:13;;;;;:::i;:::-;;:::i;3499:98:15:-;;;;;;;;;;-1:-1:-1;3499:98:15;;;;;:::i;:::-;;:::i;12029:82:13:-;;;;;;;;;;-1:-1:-1;12029:82:13;;;;;:::i;:::-;;:::i;999:87:14:-;;;;;;;;;;-1:-1:-1;1072:6:14;;;;999:87;;12881:82:13;;;;;;;;;;-1:-1:-1;12881:82:13;;;;;:::i;:::-;;:::i;11768:78::-;;;;;;;;;;-1:-1:-1;11768:78:13;;;;;:::i;:::-;;:::i;1778:104:3:-;;;;;;;;;;;;;:::i;3306:107:15:-;;;;;;;;;;-1:-1:-1;3306:107:15;;;;;:::i;:::-;3388:18;;3362:7;3388:18;;;:9;:18;;;;;;;3306:107;1369:33:13;;;;;;;;;;;;;;;;2838:653;;;;;;:::i;:::-;;:::i;1455:35::-;;;;;;;;;;-1:-1:-1;1455:35:13;;;;;;;;;;;2532:295:3;;;;;;;;;;-1:-1:-1;2532:295:3;;;;;:::i;:::-;;:::i;8418:1472:13:-;;;;;;;;;;-1:-1:-1;8418:1472:13;;;;;:::i;:::-;;:::i;3539:328:3:-;;;;;;;;;;-1:-1:-1;3539:328:3;;;;;:::i;:::-;;:::i;10366:157:13:-;;;;;;;;;;-1:-1:-1;10366:157:13;;;;;:::i;:::-;10474:42;;10448:7;10474:42;;;:25;:42;;;;;;;10366:157;11003:145;;;;;;;;;;-1:-1:-1;11003:145:13;;;;;:::i;:::-;;:::i;1622:26::-;;;;;;;;;;-1:-1:-1;1622:26:13;;;;;;;;;;;11470:295;;;;;;;;;;-1:-1:-1;11470:295:13;;;;;:::i;:::-;;:::i;3109:103:15:-;;;;;;;;;;-1:-1:-1;3109:103:15;;;;;:::i;:::-;3189:16;;3163:7;3189:16;;;:7;:16;;;;;;;3109:103;1664:48:13;;;;;;;;;;-1:-1:-1;1664:48:13;;;;;:::i;:::-;;;;;;;;;;;;;;1593:26;;;;;;;;;;-1:-1:-1;1593:26:13;;;;;;;;;;;881:31;;;;;;;;;;;;;;;;9938:149;;;;;;;;;;-1:-1:-1;9938:149:13;;;;;:::i;:::-;;:::i;5247:161::-;;;;;;;;;;-1:-1:-1;5247:161:13;;;;;:::i;:::-;;:::i;2930:93:15:-;;;;;;;;;;-1:-1:-1;3002:14:15;;2930:93;;1564:26:13;;;;;;;;;;-1:-1:-1;1564:26:13;;;;;;;;;;;2833:164:3;;;;;;;;;;-1:-1:-1;2833:164:3;;;;;:::i;:::-;2954:25;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;2833:164;4783:447:13;;;;;;:::i;:::-;;:::i;1899:192:14:-;;;;;;;;;;-1:-1:-1;1899:192:14;;;;;:::i;:::-;;:::i;1529:32:13:-;;;;;;;;;;-1:-1:-1;1529:32:13;;;;;;;;;;;193:224:4;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:4:o;11938:88:13:-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;;;;;;;;;12001:21:13;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;11938:88:::0;:::o;1672:100:3:-;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:3;;9266:2:18;2401:73:3;;;9248:21:18;9305:2;9285:18;;;9278:30;9344:34;9324:18;;;9317:62;9415:14;9395:18;;;9388:42;9447:19;;2401:73:3;9064:408:18;2401:73:3;-1:-1:-1;2494:24:3;;;;:15;:24;;;;;;;;;2305:221::o;3521:1237:13:-;3584:9;3596:13;1439:7:4;:14;;1351:110;3596:13:13;3584:25;;3612:10;3625:21;3635:10;3625:9;:21::i;:::-;3674:10;3649;3662:23;;;:11;:23;;;;;;;3944:50;;;;;;;;188:74:18;;;;3781:77:13;278:18:18;;;271:34;;;3612::13;;-1:-1:-1;3662:23:13;3718:42;;3781:77;;3718:42;;;;3944:30;;161:18:18;;3944:50:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:54;:64;;;;4007:1;4002:2;:6;3944:64;3936:103;;;;-1:-1:-1;;;3936:103:13;;9868:2:18;3936:103:13;;;9850:21:18;9907:2;9887:18;;;9880:30;9946:28;9926:18;;;9919:56;9992:18;;3936:103:13;9666:350:18;3936:103:13;4070:9;;4050:16;4054:12;4050:1;:16;:::i;:::-;:29;;4042:49;;;;-1:-1:-1;;;4042:49:13;;10545:2:18;4042:49:13;;;10527:21:18;10584:1;10564:18;;;10557:29;10622:10;10602:18;;;10595:38;10650:18;;4042:49:13;10343:331:18;4042:49:13;4117:1;4102:12;:16;4094:46;;;;-1:-1:-1;;;4094:46:13;;10881:2:18;4094:46:13;;;10863:21:18;10920:2;10900:18;;;10893:30;10959:18;10939;;;10932:46;10995:18;;4094:46:13;10679:340:18;4094:46:13;4172:12;4164:5;;:20;;;;:::i;:::-;4151:9;:33;;4143:65;;;;-1:-1:-1;;;4143:65:13;;11459:2:18;4143:65:13;;;11441:21:18;11498:2;11478:18;;;11471:30;11537:21;11517:18;;;11510:49;11576:18;;4143:65:13;11257:343:18;4143:65:13;4235:7;;4219:12;:23;;4211:45;;;;-1:-1:-1;;;4211:45:13;;11807:2:18;4211:45:13;;;11789:21:18;11846:2;11826:18;;;11819:30;11885:12;11865:18;;;11858:40;11915:18;;4211:45:13;11605:334:18;4211:45:13;4288:7;;4267:17;4272:12;4267:2;:17;:::i;:::-;:28;;4259:64;;;;-1:-1:-1;;;4259:64:13;;12146:2:18;4259:64:13;;;12128:21:18;12185:2;12165:18;;;12158:30;12224:26;12204:18;;;12197:54;12268:18;;4259:64:13;11944:348:18;4259:64:13;4329:6;;4326:406;;4344:9;4339:130;4363:12;4359:1;:16;4339:130;;;4393:15;;;;;;;4385:45;;;;-1:-1:-1;;;4385:45:13;;12499:2:18;4385:45:13;;;12481:21:18;12538:2;12518:18;;;12511:30;12577:20;12557:18;;;12550:48;12615:18;;4385:45:13;12297:342:18;4385:45:13;4433:32;4443:10;4455:5;4459:1;4455;:5;:::i;:::-;4433:32;;;;;;;;;;;;:9;:32::i;:::-;4377:3;;;:::i;:::-;;;4339:130;;;;4326:406;;;4529:7;;4514:12;;:22;;;;:::i;:::-;4489:21;;:47;;4481:86;;;;-1:-1:-1;;;4481:86:13;;13046:2:18;4481:86:13;;;13028:21:18;13085:2;13065:18;;;13058:30;13124:29;13104:18;;;13097:57;13171:18;;4481:86:13;12844:351:18;4481:86:13;4578:15;;;;4570:45;;;;-1:-1:-1;;;4570:45:13;;12499:2:18;4570:45:13;;;12481:21:18;12538:2;12518:18;;;12511:30;12577:20;12557:18;;;12550:48;12615:18;;4570:45:13;12297:342:18;4570:45:13;4623:9;4618:111;4642:12;4638:1;:16;4618:111;;;4664:32;4674:10;4686:5;4690:1;4686;:5;:::i;4664:32::-;4724:1;4699:21;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;4656:3:13;;-1:-1:-1;4656:3:13;;:::i;:::-;;;4618:111;;;;4326:406;-1:-1:-1;;;;;;;3521:1237:13:o;1888:411:3:-;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:3;;13402:2:18;2019:57:3;;;13384:21:18;13441:2;13421:18;;;13414:30;13480:34;13460:18;;;13453:62;13551:3;13531:18;;;13524:31;13572:19;;2019:57:3;13200:397:18;2019:57:3;682:10:1;2111:21:3;;;;;:62;;-1:-1:-1;2136:37:3;2153:5;682:10:1;2833:164:3;:::i;2136:37::-;2089:168;;;;-1:-1:-1;;;2089:168:3;;13804:2:18;2089:168:3;;;13786:21:18;13843:2;13823:18;;;13816:30;13882:34;13862:18;;;13855:62;13953:26;13933:18;;;13926:54;13997:19;;2089:168:3;13602:420:18;2089:168:3;2270:21;2279:2;2283:7;2270:8;:21::i;:::-;1958:341;1888:411;;:::o;10574:147:13:-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;10669:41:13::1;;;::::0;;;:24:::1;:41:::0;;;;;10713:1:::1;10669:45:::0;;10574:147::o;12383:76::-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;12439:6:13::1;:16:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;12383:76::o;3791:600:15:-;3866:16;;;3885:1;3866:16;;;:7;:16;;;;;;3858:71;;;;-1:-1:-1;;;3858:71:15;;14229:2:18;3858:71:15;;;14211:21:18;14268:2;14248:18;;;14241:30;14307:34;14287:18;;;14280:62;14378:8;14358:18;;;14351:36;14404:19;;3858:71:15;14027:402:18;3858:71:15;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:15;;4031:32;;3940:62;4031:32;:::i;:::-;4030:49;;;;:::i;:::-;:70;;;;:::i;:::-;4012:88;-1:-1:-1;4119:12:15;4111:68;;;;-1:-1:-1;;;4111:68:15;;15080:2:18;4111:68:15;;;15062:21:18;15119:2;15099:18;;;15092:30;15158:34;15138:18;;;15131:62;15229:13;15209:18;;;15202:41;15260:19;;4111:68:15;14878:407:18;4111:68:15;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:18;206:55;;188:74;;293:2;278:18;;271:34;;;4351:33:15;;161:18:18;4351:33:15;;;;;;;3848:543;;3791:600;:::o;3003:339:3:-;3198:41;682:10:1;3231:7:3;3198:18;:41::i;:::-;3190:103;;;;-1:-1:-1;;;3190:103:3;;15802:2:18;3190:103:3;;;15784:21:18;15841:2;15821:18;;;15814:30;15880:34;15860:18;;;15853:62;15951:19;15931:18;;;15924:47;15988:19;;3190:103:3;15600:413:18;3190:103:3;3306:28;3316:4;3322:2;3326:7;3306:9;:28::i;12711:82:13:-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;12770:9:13::1;:19:::0;12711:82::o;12796:::-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;12855:9:13::1;:19:::0;12796:82::o;423:499:4:-;512:15;556:23;573:5;556:16;:23::i;:::-;548:5;:31;540:66;;;;-1:-1:-1;;;540:66:4;;16220:2:18;540:66:4;;;16202:21:18;16259:2;16239:18;;;16232:30;16298:24;16278:18;;;16271:52;16340:18;;540:66:4;16018:346:18;540:66:4;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:4;;-1:-1:-1;777:8:4;735:102;830:7;;;:::i;:::-;;;735:102;671:3;;;:::i;:::-;;;638:226;;;-1:-1:-1;874:40:4;;-1:-1:-1;;;874:40:4;;16220:2:18;874:40:4;;;16202:21:18;16259:2;16239:18;;;16232:30;16298:24;16278:18;;;16271:52;16340:18;;874:40:4;16018:346:18;11849:86:13;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;11910:7:13::1;:21:::0;11849:86::o;12620:88::-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;12682:12:13::1;:22:::0;12620:88::o;12967:148::-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;13034:58:13::1;::::0;13016:12:::1;::::0;13042:10:::1;::::0;13066:21:::1;::::0;13016:12;13034:58;13016:12;13034:58;13066:21;13042:10;13034:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13015:77;;;13103:7;13095:16;;;::::0;::::1;;13012:103;12967:148::o:0;3348:185:3:-;3486:39;3503:4;3509:2;3513:7;3486:39;;;;;;;;;;;;:16;:39::i;5430:1472:13:-;5538:6;;;;;;;5530:39;;;;-1:-1:-1;;;5530:39:13;;16970:2:18;5530:39:13;;;16952:21:18;17009:2;16989:18;;;16982:30;17048:23;17028:18;;;17021:51;17089:18;;5530:39:13;16768:345:18;5530:39:13;5627:10;5617:21;;;;:9;:21;;;;;;:26;5609:54;;;;-1:-1:-1;;;5609:54:13;;17320:2:18;5609:54:13;;;17302:21:18;17359:2;17339:18;;;17332:30;17398:18;17378;;;17371:46;17434:18;;5609:54:13;17118:340:18;5609:54:13;5719:9;;5697:18;;:31;;5689:68;;;;-1:-1:-1;;;5689:68:13;;17665:2:18;5689:68:13;;;17647:21:18;17704:2;17684:18;;;17677:30;17743:26;17723:18;;;17716:54;17787:18;;5689:68:13;17463:348:18;5689:68:13;5780:12;5796:4;5780:20;5777:1122;;;5804:10;:44;;;;;;;;;;;;;5861:32;;;;;5882:10;5861:32;;;4015:74:18;-1:-1:-1;;5804:44:13;5861:20;;3988:18:18;;5861:32:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5851:42;;5925:1;5920:2;:6;5912:15;;;;;;5938:46;;;5987:1;5938:46;;;:25;:46;;;;;;5930:89;;;;-1:-1:-1;;;5930:89:13;;18018:2:18;5930:89:13;;;18000:21:18;18057:2;18037:18;;;18030:30;18096:28;18076:18;;;18069:56;18142:18;;5930:89:13;17816:350:18;5930:89:13;6050:7;;6036:10;6022:25;;;;:13;:25;;;;;;;;:35;;;;6060:9;:21;;;;;:26;;6085:1;;6022:25;6060:26;;6085:1;;6060:26;:::i;:::-;;;;;;;;6111:1;6089:18;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;5777:1122:13;;-1:-1:-1;;5777:1122:13;;6154:12;6170:3;6154:19;6151:748;;;6177:9;:42;;;;;;;;;;;;;6232:31;;;;;6252:10;6232:31;;;4015:74:18;-1:-1:-1;;6177:42:13;6232:19;;3988:18:18;;6232:31:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6222:41;;6294:1;6289:2;:6;6281:15;;;;;;6307:45;;;6355:1;6307:45;;;:24;:45;;;;;;6299:88;;;;-1:-1:-1;;;6299:88:13;;18018:2:18;6299:88:13;;;18000:21:18;18057:2;18037:18;;;18030:30;18096:28;18076:18;;;18069:56;18142:18;;6299:88:13;17816:350:18;6151:748:13;6521:12;6537:2;6521:18;6518:381;;;6543:8;:40;;;;;;;;;;;;;6596:30;;;;;6615:10;6596:30;;;4015:74:18;-1:-1:-1;;6543:40:13;6596:18;;3988::18;;6596:30:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6586:40;;6656:1;6651:2;:6;6643:15;;;;;;6669:44;;;6716:1;6669:44;;;:23;:44;;;;;;6661:87;;;;-1:-1:-1;;;6661:87:13;;18018:2:18;6661:87:13;;;18000:21:18;18057:2;18037:18;;;18030:30;18096:28;18076:18;;;18069:56;18142:18;;6661:87:13;17816:350:18;6518:381:13;6880:10;6894:1;6866:25;;;:13;:25;;;;;:29;5430:1472;;:::o;12462:76::-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;12518:6:13::1;:16:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;12462:76::o;12541:::-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;12597:6:13::1;:16:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;12541:76::o;1467:200:4:-;1542:7;1578:30;1439:7;:14;;1351:110;1578:30;1570:5;:38;1562:74;;;;-1:-1:-1;;;1562:74:4;;18373:2:18;1562:74:4;;;18355:21:18;18412:2;18392:18;;;18385:30;18451:25;18431:18;;;18424:53;18494:18;;1562:74:4;18171:347:18;1562:74:4;-1:-1:-1;1654:5:4;1467:200::o;12296:84:13:-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;12353:13:13::1;:23:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;12296:84::o;12205:88::-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;12264:15:13::1;:25:::0;;;::::1;;;;::::0;;;::::1;::::0;;;::::1;::::0;;12205:88::o;1427:239:3:-;1499:7;1519:13;1535:7;1543;1535:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;1570:19:3;1562:73;;;;-1:-1:-1;;;1562:73:3;;18725:2:18;1562:73:3;;;18707:21:18;18764:2;18744:18;;;18737:30;18803:34;18783:18;;;18776:62;18874:11;18854:18;;;18847:39;18903:19;;1562:73:3;18523:405:18;6924:1472:13;7032:6;;;;;;;7024:39;;;;-1:-1:-1;;;7024:39:13;;16970:2:18;7024:39:13;;;16952:21:18;17009:2;16989:18;;;16982:30;17048:23;17028:18;;;17021:51;17089:18;;7024:39:13;16768:345:18;7024:39:13;7121:10;7111:21;;;;:9;:21;;;;;;:26;7103:54;;;;-1:-1:-1;;;7103:54:13;;17320:2:18;7103:54:13;;;17302:21:18;17359:2;17339:18;;;17332:30;17398:18;17378;;;17371:46;17434:18;;7103:54:13;17118:340:18;7103:54:13;7213:9;;7191:18;;:31;;7183:68;;;;-1:-1:-1;;;7183:68:13;;17665:2:18;7183:68:13;;;17647:21:18;17704:2;17684:18;;;17677:30;17743:26;17723:18;;;17716:54;17787:18;;7183:68:13;17463:348:18;7183:68:13;7274:12;7290:4;7274:20;7271:1122;;;7298:10;:44;;;;;;;;;;;;;7355:32;;;;;7376:10;7355:32;;;4015:74:18;-1:-1:-1;;7298:44:13;7355:20;;3988:18:18;;7355:32:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7345:42;;7419:1;7414:2;:6;7406:15;;;;;;7432:46;;;7481:1;7432:46;;;:25;:46;;;;;;7424:89;;;;-1:-1:-1;;;7424:89:13;;18018:2:18;7424:89:13;;;18000:21:18;18057:2;18037:18;;;18030:30;18096:28;18076:18;;;18069:56;18142:18;;7424:89:13;17816:350:18;7424:89:13;7544:7;;7530:10;7516:25;;;;:13;:25;;;;;;;;:35;;;;7554:9;:21;;;;;:26;;7579:1;;7516:25;7554:26;;7579:1;;7554:26;:::i;:::-;;;;;;;;7605:1;7583:18;;:23;;;;;;;:::i;7271:1122::-;7648:12;7664:3;7648:19;7645:748;;;7671:9;:42;;;;;;;;;;;;;7726:31;;;;;7746:10;7726:31;;;4015:74:18;-1:-1:-1;;7671:42:13;7726:19;;3988:18:18;;7726:31:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7716:41;;7788:1;7783:2;:6;7775:15;;;;;;7801:45;;;7849:1;7801:45;;;:24;:45;;;;;;7793:88;;;;-1:-1:-1;;;7793:88:13;;18018:2:18;7793:88:13;;;18000:21:18;18057:2;18037:18;;;18030:30;18096:28;18076:18;;;18069:56;18142:18;;7793:88:13;17816:350:18;7645:748:13;8015:12;8031:2;8015:18;8012:381;;;8037:8;:40;;;;;;;;;;;;;8090:30;;;;;8109:10;8090:30;;;4015:74:18;-1:-1:-1;;8037:40:13;8090:18;;3988::18;;8090:30:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8080:40;;8150:1;8145:2;:6;8137:15;;;;;;8163:44;;;8210:1;8163:44;;;:23;:44;;;;;;8155:87;;;;-1:-1:-1;;;8155:87:13;;18018:2:18;8155:87:13;;;18000:21:18;18057:2;18037:18;;;18030:30;18096:28;18076:18;;;18069:56;18142:18;;8155:87:13;17816:350:18;840:21:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1007:414:3:-;1079:7;1107:19;;;1099:74;;;;-1:-1:-1;;;1099:74:3;;19135:2:18;1099:74:3;;;19117:21:18;19174:2;19154:18;;;19147:30;19213:34;19193:18;;;19186:62;19284:12;19264:18;;;19257:40;19314:19;;1099:74:3;18933:406:18;1099:74:3;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:3;;1007:414;-1:-1:-1;;;1007:414:3:o;1650:94:14:-;1072:6;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;10139:149:13:-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;10235:42:13::1;;;::::0;;;:25:::1;:42;::::0;;;;10280:1:::1;10235:46:::0;;10139:149::o;928:417:4:-;987:16;1028:23;1045:5;1028:16;:23::i;:::-;1024:1;:27;1016:62;;;;-1:-1:-1;;;1016:62:4;;16220:2:18;1016:62:4;;;16202:21:18;16259:2;16239:18;;;16232:30;16298:24;16278:18;;;16271:52;16340:18;;1016:62:4;16018:346:18;1016:62:4;1089:18;1110:16;1120:5;1110:9;:16::i;:::-;1089:37;;1137:25;1179:10;1165:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1165:25:4;;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:4;928:417;-1:-1:-1;;;928:417:4:o;12114:88:13:-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;12173:15:13::1;:25:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;12114:88::o;3499:98:15:-;3550:7;3576;3584:5;3576:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;3499:98;-1:-1:-1;;3499:98:15:o;12029:82:13:-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;12085:12:13::1;:22:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;12029:82::o;12881:::-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;12940:9:13::1;:19:::0;12881:82::o;11768:78::-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;11825:5:13::1;:17:::0;11768:78::o;1778:104:3:-;1834:13;1867:7;1860:14;;;;;:::i;2838:653:13:-;2900:9;2912:13;1439:7:4;:14;;1351:110;2912:13:13;2954:10;2928:9;2940:25;;;:13;:25;;;;;;2900;;-1:-1:-1;2928:9:13;2984:21;;:9;:21::i;:::-;2971:34;;3020:1;3016;:5;3008:43;;;;-1:-1:-1;;;3008:43:13;;9868:2:18;3008:43:13;;;9850:21:18;9907:2;9887:18;;;9880:30;9946:28;9926:18;;;9919:56;9992:18;;3008:43:13;9666:350:18;3008:43:13;3062:13;;;;;;;3054:43;;;;-1:-1:-1;;;3054:43:13;;12499:2:18;3054:43:13;;;12481:21:18;12538:2;12518:18;;;12511:30;12577:20;12557:18;;;12550:48;12615:18;;3054:43:13;12297:342:18;3054:43:13;3128:9;;3108:16;3112:12;3108:1;:16;:::i;:::-;:29;;3100:49;;;;-1:-1:-1;;;3100:49:13;;10545:2:18;3100:49:13;;;10527:21:18;10584:1;10564:18;;;10557:29;10622:10;10602:18;;;10595:38;10650:18;;3100:49:13;10343:331:18;3100:49:13;3175:1;3160:12;:16;3152:46;;;;-1:-1:-1;;;3152:46:13;;10881:2:18;3152:46:13;;;10863:21:18;10920:2;10900:18;;;10893:30;10959:18;10939;;;10932:46;10995:18;;3152:46:13;10679:340:18;3152:46:13;3230:12;3222:5;;:20;;;;:::i;:::-;3209:9;:33;;3201:65;;;;-1:-1:-1;;;3201:65:13;;11459:2:18;3201:65:13;;;11441:21:18;11498:2;11478:18;;;11471:30;11537:21;11517:18;;;11510:49;11576:18;;3201:65:13;11257:343:18;3201:65:13;3293:7;;3277:12;:23;;3269:45;;;;-1:-1:-1;;;3269:45:13;;11807:2:18;3269:45:13;;;11789:21:18;11846:2;11826:18;;;11819:30;11885:12;11865:18;;;11858:40;11915:18;;3269:45:13;11605:334:18;3269:45:13;3346:7;;3325:17;3330:12;3325:2;:17;:::i;:::-;:28;;3317:64;;;;-1:-1:-1;;;3317:64:13;;12146:2:18;3317:64:13;;;12128:21:18;12185:2;12165:18;;;12158:30;12224:26;12204:18;;;12197:54;12268:18;;3317:64:13;11944:348:18;3317:64:13;3384:8;;;3400:9;3395:82;3419:12;3415:1;:16;3395:82;;;3441:32;3451:10;3463:5;3467:1;3463;:5;:::i;3441:32::-;3433:3;;;:::i;:::-;;;3395:82;;;-1:-1:-1;;;;;2838:653:13:o;2532:295:3:-;2635:24;;;682:10:1;2635:24:3;;2627:62;;;;-1:-1:-1;;;2627:62:3;;19546:2:18;2627:62:3;;;19528:21:18;19585:2;19565:18;;;19558:30;19624:27;19604:18;;;19597:55;19669:18;;2627:62:3;19344:349:18;2627:62:3;682:10:1;2702:32:3;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;2771:48;;1481:41:18;;;2702:42:3;;682:10:1;2771:48:3;;1454:18:18;2771:48:3;;;;;;;2532:295;;:::o;8418:1472:13:-;8526:6;;;;;;;8518:39;;;;-1:-1:-1;;;8518:39:13;;16970:2:18;8518:39:13;;;16952:21:18;17009:2;16989:18;;;16982:30;17048:23;17028:18;;;17021:51;17089:18;;8518:39:13;16768:345:18;8518:39:13;8615:10;8605:21;;;;:9;:21;;;;;;:26;8597:54;;;;-1:-1:-1;;;8597:54:13;;17320:2:18;8597:54:13;;;17302:21:18;17359:2;17339:18;;;17332:30;17398:18;17378;;;17371:46;17434:18;;8597:54:13;17118:340:18;8597:54:13;8707:9;;8685:18;;:31;;8677:68;;;;-1:-1:-1;;;8677:68:13;;17665:2:18;8677:68:13;;;17647:21:18;17704:2;17684:18;;;17677:30;17743:26;17723:18;;;17716:54;17787:18;;8677:68:13;17463:348:18;8677:68:13;8768:12;8784:4;8768:20;8765:1122;;;8792:10;:44;;;;;;;;;;;;;8849:32;;;;;8870:10;8849:32;;;4015:74:18;-1:-1:-1;;8792:44:13;8849:20;;3988:18:18;;8849:32:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8839:42;;8913:1;8908:2;:6;8900:15;;;;;;8926:46;;;8975:1;8926:46;;;:25;:46;;;;;;8918:89;;;;-1:-1:-1;;;8918:89:13;;18018:2:18;8918:89:13;;;18000:21:18;18057:2;18037:18;;;18030:30;18096:28;18076:18;;;18069:56;18142:18;;8918:89:13;17816:350:18;8918:89:13;9038:7;;9024:10;9010:25;;;;:13;:25;;;;;;;;:35;;;;9048:9;:21;;;;;:26;;9073:1;;9010:25;9048:26;;9073:1;;9048:26;:::i;:::-;;;;;;;;9099:1;9077:18;;:23;;;;;;;:::i;8765:1122::-;9142:12;9158:3;9142:19;9139:748;;;9165:9;:42;;;;;;;;;;;;;9220:31;;;;;9240:10;9220:31;;;4015:74:18;-1:-1:-1;;9165:42:13;9220:19;;3988:18:18;;9220:31:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9210:41;;9282:1;9277:2;:6;9269:15;;;;;;9295:45;;;9343:1;9295:45;;;:24;:45;;;;;;9287:88;;;;-1:-1:-1;;;9287:88:13;;18018:2:18;9287:88:13;;;18000:21:18;18057:2;18037:18;;;18030:30;18096:28;18076:18;;;18069:56;18142:18;;9287:88:13;17816:350:18;9139:748:13;9509:12;9525:2;9509:18;9506:381;;;9531:8;:40;;;;;;;;;;;;;9584:30;;;;;9603:10;9584:30;;;4015:74:18;-1:-1:-1;;9531:40:13;9584:18;;3988::18;;9584:30:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;9574:40;;9644:1;9639:2;:6;9631:15;;;;;;9657:44;;;9704:1;9657:44;;;:23;:44;;;;;;9649:87;;;;-1:-1:-1;;;9649:87:13;;18018:2:18;9649:87:13;;;18000:21:18;18057:2;18037:18;;;18030:30;18096:28;18076:18;;;18069:56;18142:18;;9649:87:13;17816:350:18;3539:328:3;3714:41;682:10:1;3747:7:3;3714:18;:41::i;:::-;3706:103;;;;-1:-1:-1;;;3706:103:3;;15802:2:18;3706:103:3;;;15784:21:18;15841:2;15821:18;;;15814:30;15880:34;15860:18;;;15853:62;15951:19;15931:18;;;15924:47;15988:19;;3706:103:3;15600:413:18;3706:103:3;3820:39;3834:4;3840:2;3844:7;3853:5;3820:13;:39::i;:::-;3539:328;;;;:::o;11003:145:13:-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;11097:40:13::1;;;::::0;;;:23:::1;:40;::::0;;;;11140:1:::1;11097:44:::0;;11003:145::o;11470:295::-;11543:13;11569:16;11577:7;11569;:16::i;:::-;11561:46;;;;-1:-1:-1;;;11561:46:13;;19900:2:18;11561:46:13;;;19882:21:18;19939:2;19919:18;;;19912:30;19978:19;19958:18;;;19951:47;20015:18;;11561:46:13;19698:341:18;11561:46:13;11610:28;11641:10;:8;:10::i;:::-;11610:41;;11692:1;11667:14;11661:28;:32;:100;;;;;;;;;;;;;;;;;11720:14;11736:18;:7;:16;:18::i;:::-;11703:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11661:100;11654:107;11470:295;-1:-1:-1;;;11470:295:13:o;9938:149::-;9993:7;10015:19;;;10007:44;;;;-1:-1:-1;;;10007:44:13;;20721:2:18;10007:44:13;;;20703:21:18;20760:2;20740:18;;;20733:30;20799:14;20779:18;;;20772:42;20831:18;;10007:44:13;20519:336:18;10007:44:13;-1:-1:-1;10064:16:13;;;;;;:9;:16;;;;;;;9938:149::o;5247:161::-;1072:6:14;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;5324:9:13::1;5320:85;5335:21:::0;;::::1;5320:85;;;5394:7;;5365:11;:26;5377:10;;5388:1;5377:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;5365:26;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;5365:26:13;:36;5358:3;::::1;::::0;::::1;:::i;:::-;;;;5320:85;;4783:447:::0;4843:9;4855:13;1439:7:4;:14;;1351:110;4855:13:13;4879:12;;4843:25;;-1:-1:-1;4879:12:13;;;;;4871:42;;;;-1:-1:-1;;;4871:42:13;;12499:2:18;4871:42:13;;;12481:21:18;12538:2;12518:18;;;12511:30;12577:20;12557:18;;;12550:48;12615:18;;4871:42:13;12297:342:18;4871:42:13;4944:9;;4924:16;4928:12;4924:1;:16;:::i;:::-;:29;;4916:49;;;;-1:-1:-1;;;4916:49:13;;10545:2:18;4916:49:13;;;10527:21:18;10584:1;10564:18;;;10557:29;10622:10;10602:18;;;10595:38;10650:18;;4916:49:13;10343:331:18;4916:49:13;4991:1;4976:12;:16;4968:47;;;;-1:-1:-1;;;4968:47:13;;21062:2:18;4968:47:13;;;21044:21:18;21101:2;21081:18;;;21074:30;21140:19;21120:18;;;21113:47;21177:18;;4968:47:13;20860:341:18;4968:47:13;5047:12;5039:5;;:20;;;;:::i;:::-;5026:9;:33;;5018:65;;;;-1:-1:-1;;;5018:65:13;;11459:2:18;5018:65:13;;;11441:21:18;11498:2;11478:18;;;11471:30;11537:21;11517:18;;;11510:49;11576:18;;5018:65:13;11257:343:18;5018:65:13;5110:7;;5094:12;:23;;5086:45;;;;-1:-1:-1;;;5086:45:13;;11807:2:18;5086:45:13;;;11789:21:18;11846:2;11826:18;;;11819:30;11885:12;11865:18;;;11858:40;11915:18;;5086:45:13;11605:334:18;5086:45:13;5139:9;5134:82;5158:12;5154:1;:16;5134:82;;;5180:32;5190:10;5202:5;5206:1;5202;:5;:::i;5180:32::-;5172:3;;;:::i;:::-;;;5134:82;;1899:192:14;1072:6;;1219:23;1072:6;682:10:1;1219:23:14;1211:68;;;;-1:-1:-1;;;1211:68:14;;8463:2:18;1211:68:14;;;8445:21:18;;;8482:18;;;8475:30;8541:34;8521:18;;;8514:62;8593:18;;1211:68:14;8261:356:18;1211:68:14;1988:22:::1;::::0;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:14;;21408:2:18;1980:73:14::1;::::0;::::1;21390:21:18::0;21447:2;21427:18;;;21420:30;21486:34;21466:18;;;21459:62;21557:8;21537:18;;;21530:36;21583:19;;1980:73:14::1;21206:402:18::0;1980:73:14::1;2064:19;2074:8;2064:9;:19::i;696:305:3:-:0;798:4;835:40;;;850:25;835:40;;:105;;-1:-1:-1;892:48:3;;;907:33;892:48;835:105;:158;;;-1:-1:-1;911:25:2;896:40;;;;957:36:3;787:157:2;4196:155:3;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:3:o;4818:321::-;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:3;;21815:2:18;4977:154:3;;;21797:21:18;21854:2;21834:18;;;21827:30;21893:34;21873:18;;;21866:62;21964:20;21944:18;;;21937:48;22002:19;;4977:154:3;21613:414:18;6345:174:3;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;;22234:2:18;2147:73:0;;;22216:21:18;22273:2;22253:18;;;22246:30;22312:31;22292:18;;;22285:59;22361:18;;2147:73:0;22032:353:18;2147:73:0;2234:12;2252:9;:14;;2274:6;2252:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:52;;;2304:7;2296:78;;;;-1:-1:-1;;;2296:78:0;;22592:2:18;2296:78:0;;;22574:21:18;22631:2;22611:18;;;22604:30;22670:34;22650:18;;;22643:62;22741:28;22721:18;;;22714:56;22787:19;;2296:78:0;22390:422:18;4354:348:3;4447:4;4472:16;4480:7;4472;:16::i;:::-;4464:73;;;;-1:-1:-1;;;4464:73:3;;23019:2:18;4464:73:3;;;23001:21:18;23058:2;23038:18;;;23031:30;23097:34;23077:18;;;23070:62;23168:14;23148:18;;;23141:42;23200:19;;4464:73:3;22817:408:18;4464:73:3;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:3;;;;2930:4;2954:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;4661:32;4598:96;4354:348;-1:-1:-1;;;;4354:348:3:o;5826:516::-;5985:4;5958:31;;:23;5973:7;5958:14;:23::i;:::-;:31;;;5950:85;;;;-1:-1:-1;;;5950:85:3;;23432:2:18;5950:85:3;;;23414:21:18;23471:2;23451:18;;;23444:30;23510:34;23490:18;;;23483:62;23581:11;23561:18;;;23554:39;23610:19;;5950:85:3;23230:405:18;5950:85:3;6054:16;;;6046:65;;;;-1:-1:-1;;;6046:65:3;;23842:2:18;6046:65:3;;;23824:21:18;23881:2;23861:18;;;23854:30;23920:34;23900:18;;;23893:62;23991:6;23971:18;;;23964:34;24015:19;;6046:65:3;23640:400:18;6046:65:3;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;2099:173:14:-;2174:6;;;;2191:17;;;;;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;3878:315:3:-;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:3;;21815:2:18;4074:111:3;;;21797:21:18;21854:2;21834:18;;;21827:30;21893:34;21873:18;;;21866:62;21964:20;21944:18;;;21937:48;22002:19;;4074:111:3;21613:414:18;11380:87:13;11431:13;11456:7;11449:14;;;;;:::i;288:723:17:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:17;;;;;;;;;;;;;;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:17;;-1:-1:-1;744:2:17;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:17;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:17;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:17;958:2;949:11;;:::i;:::-;;;818:154;;5142:346:3;5222:16;;;5214:61;;;;-1:-1:-1;;;5214:61:3;;24364:2:18;5214:61:3;;;24346:21:18;;;24383:18;;;24376:30;24442:34;24422:18;;;24415:62;24494:18;;5214:61:3;24162:356:18;5214:61:3;5295:16;5303:7;5295;:16::i;:::-;5294:17;5286:58;;;;-1:-1:-1;;;5286:58:3;;24725:2:18;5286:58:3;;;24707:21:18;24764:2;24744:18;;;24737:30;24803;24783:18;;;24776:58;24851:18;;5286:58:3;24523:352:18;5286:58:3;5413:7;:16;;;;;;;-1:-1:-1;5413:16:3;;;;;;;;;;;;;;;;;;5447:33;;5472:7;;-1:-1:-1;5447:33:3;;-1:-1:-1;;5447:33:3;5142:346;;:::o;6522:799::-;6677:4;6698:13;;;1066:20:0;1114:8;6694:620:3;;6734:72;;;;;:36;;;;;;:72;;682:10:1;;6785:4:3;;6791:7;;6800:5;;6734:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6734:72:3;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;6730:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6976:13:3;;6972:272;;7019:60;;-1:-1:-1;;;7019:60:3;;21815:2:18;7019:60:3;;;21797:21:18;21854:2;21834:18;;;21827:30;21893:34;21873:18;;;21866:62;21964:20;21944:18;;;21937:48;22002:19;;7019:60:3;21613:414:18;6972:272:3;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:3;;6694:620;-1:-1:-1;7298:4:3;6522:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;316:154:18;402:42;395:5;391:54;384:5;381:65;371:93;;460:1;457;450:12;475:247;534:6;587:2;575:9;566:7;562:23;558:32;555:52;;;603:1;600;593:12;555:52;642:9;629:23;661:31;686:5;661:31;:::i;909:177::-;994:66;987:5;983:78;976:5;973:89;963:117;;1076:1;1073;1066:12;1091:245;1149:6;1202:2;1190:9;1181:7;1177:23;1173:32;1170:52;;;1218:1;1215;1208:12;1170:52;1257:9;1244:23;1276:30;1300:5;1276:30;:::i;1533:184::-;1585:77;1582:1;1575:88;1682:4;1679:1;1672:15;1706:4;1703:1;1696:15;1722:691;1787:5;1817:18;1858:2;1850:6;1847:14;1844:40;;;1864:18;;:::i;:::-;1998:2;1992:9;2064:2;2052:15;;1903:66;2048:24;;;2074:2;2044:33;2040:42;2028:55;;;2098:18;;;2118:22;;;2095:46;2092:72;;;2144:18;;:::i;:::-;2184:10;2180:2;2173:22;2213:6;2204:15;;2243:6;2235;2228:22;2283:3;2274:6;2269:3;2265:16;2262:25;2259:45;;;2300:1;2297;2290:12;2259:45;2350:6;2345:3;2338:4;2330:6;2326:17;2313:44;2405:1;2398:4;2389:6;2381;2377:19;2373:30;2366:41;;;;1722:691;;;;;:::o;2418:451::-;2487:6;2540:2;2528:9;2519:7;2515:23;2511:32;2508:52;;;2556:1;2553;2546:12;2508:52;2596:9;2583:23;2629:18;2621:6;2618:30;2615:50;;;2661:1;2658;2651:12;2615:50;2684:22;;2737:4;2729:13;;2725:27;-1:-1:-1;2715:55:18;;2766:1;2763;2756:12;2715:55;2789:74;2855:7;2850:2;2837:16;2832:2;2828;2824:11;2789:74;:::i;2874:258::-;2946:1;2956:113;2970:6;2967:1;2964:13;2956:113;;;3046:11;;;3040:18;3027:11;;;3020:39;2992:2;2985:10;2956:113;;;3087:6;3084:1;3081:13;3078:48;;;-1:-1:-1;;3122:1:18;3104:16;;3097:27;2874:258::o;3137:317::-;3179:3;3217:5;3211:12;3244:6;3239:3;3232:19;3260:63;3316:6;3309:4;3304:3;3300:14;3293:4;3286:5;3282:16;3260:63;:::i;:::-;3368:2;3356:15;3373:66;3352:88;3343:98;;;;3443:4;3339:109;;3137:317;-1:-1:-1;;3137:317:18:o;3459:220::-;3608:2;3597:9;3590:21;3571:4;3628:45;3669:2;3658:9;3654:18;3646:6;3628:45;:::i;3684:180::-;3743:6;3796:2;3784:9;3775:7;3771:23;3767:32;3764:52;;;3812:1;3809;3802:12;3764:52;-1:-1:-1;3835:23:18;;3684:180;-1:-1:-1;3684:180:18:o;4100:315::-;4168:6;4176;4229:2;4217:9;4208:7;4204:23;4200:32;4197:52;;;4245:1;4242;4235:12;4197:52;4284:9;4271:23;4303:31;4328:5;4303:31;:::i;:::-;4353:5;4405:2;4390:18;;;;4377:32;;-1:-1:-1;;;4100:315:18:o;4420:160::-;4485:20;;4541:13;;4534:21;4524:32;;4514:60;;4570:1;4567;4560:12;4514:60;4420:160;;;:::o;4585:180::-;4641:6;4694:2;4682:9;4673:7;4669:23;4665:32;4662:52;;;4710:1;4707;4700:12;4662:52;4733:26;4749:9;4733:26;:::i;5030:456::-;5107:6;5115;5123;5176:2;5164:9;5155:7;5151:23;5147:32;5144:52;;;5192:1;5189;5182:12;5144:52;5231:9;5218:23;5250:31;5275:5;5250:31;:::i;:::-;5300:5;-1:-1:-1;5357:2:18;5342:18;;5329:32;5370:33;5329:32;5370:33;:::i;:::-;5030:456;;5422:7;;-1:-1:-1;;;5476:2:18;5461:18;;;;5448:32;;5030: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:18;;5491:632;-1:-1:-1;;;;;;5491:632:18: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:18;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:18;6787:18;;6774:32;6815:33;6774:32;6815:33;:::i;:::-;6867:7;-1:-1:-1;6921:2:18;6906:18;;6893:32;;-1:-1:-1;6976:2:18;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:18;;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:615::-;7334:6;7342;7395:2;7383:9;7374:7;7370:23;7366:32;7363:52;;;7411:1;7408;7401:12;7363:52;7451:9;7438:23;7480:18;7521:2;7513:6;7510:14;7507:34;;;7537:1;7534;7527:12;7507:34;7575:6;7564:9;7560:22;7550:32;;7620:7;7613:4;7609:2;7605:13;7601:27;7591:55;;7642:1;7639;7632:12;7591:55;7682:2;7669:16;7708:2;7700:6;7697:14;7694:34;;;7724:1;7721;7714:12;7694:34;7777:7;7772:2;7762:6;7759:1;7755:14;7751:2;7747:23;7743:32;7740:45;7737:65;;;7798:1;7795;7788:12;7737:65;7829:2;7821:11;;;;;7851:6;;-1:-1:-1;7248:615:18;;-1:-1:-1;;;;7248:615:18:o;7868:388::-;7936:6;7944;7997:2;7985:9;7976:7;7972:23;7968:32;7965:52;;;8013:1;8010;8003:12;7965:52;8052:9;8039:23;8071:31;8096:5;8071:31;:::i;:::-;8121:5;-1:-1:-1;8178:2:18;8163:18;;8150:32;8191:33;8150:32;8191:33;:::i;:::-;8243:7;8233:17;;;7868:388;;;;;:::o;8622:437::-;8701:1;8697:12;;;;8744;;;8765:61;;8819:4;8811:6;8807:17;8797:27;;8765:61;8872:2;8864:6;8861:14;8841:18;8838:38;8835:218;;;8909:77;8906:1;8899:88;9010:4;9007:1;9000:15;9038:4;9035:1;9028:15;8835:218;;8622:437;;;:::o;9477:184::-;9547:6;9600:2;9588:9;9579:7;9575:23;9571:32;9568:52;;;9616:1;9613;9606:12;9568:52;-1:-1:-1;9639:16:18;;9477:184;-1:-1:-1;9477:184:18:o;10021:::-;10073:77;10070:1;10063:88;10170:4;10167:1;10160:15;10194:4;10191:1;10184:15;10210:128;10250:3;10281:1;10277:6;10274:1;10271:13;10268:39;;;10287:18;;:::i;:::-;-1:-1:-1;10323:9:18;;10210:128::o;11024:228::-;11064:7;11190:1;11122:66;11118:74;11115:1;11112:81;11107:1;11100:9;11093:17;11089:105;11086:131;;;11197:18;;:::i;:::-;-1:-1:-1;11237:9:18;;11024:228::o;12644:195::-;12683:3;12714:66;12707:5;12704:77;12701:103;;;12784:18;;:::i;:::-;-1:-1:-1;12831:1:18;12820:13;;12644:195::o;14434:184::-;14486:77;14483:1;14476:88;14583:4;14580:1;14573:15;14607:4;14604:1;14597:15;14623:120;14663:1;14689;14679:35;;14694:18;;:::i;:::-;-1:-1:-1;14728:9:18;;14623:120::o;14748:125::-;14788:4;14816:1;14813;14810:8;14807:34;;;14821:18;;:::i;:::-;-1:-1:-1;14858:9:18;;14748:125::o;16369:184::-;16421:77;16418:1;16411:88;16518:4;16515:1;16508:15;16542:4;16539:1;16532:15;20044:470;20223:3;20261:6;20255:13;20277:53;20323:6;20318:3;20311:4;20303:6;20299:17;20277:53;:::i;:::-;20393:13;;20352:16;;;;20415:57;20393:13;20352:16;20449:4;20437:17;;20415:57;:::i;:::-;20488:20;;20044:470;-1:-1:-1;;;;20044:470:18:o;24045:112::-;24077:1;24103;24093:35;;24108:18;;:::i;:::-;-1:-1:-1;24142:9:18;;24045:112::o;24880:512::-;25074:4;25103:42;25184:2;25176:6;25172:15;25161:9;25154:34;25236:2;25228:6;25224:15;25219:2;25208:9;25204:18;25197:43;;25276:6;25271:2;25260:9;25256:18;25249:34;25319:3;25314:2;25303:9;25299:18;25292:31;25340:46;25381:3;25370:9;25366:19;25358:6;25340:46;:::i;:::-;25332:54;24880:512;-1:-1:-1;;;;;;24880:512:18:o;25397:249::-;25466:6;25519:2;25507:9;25498:7;25494:23;25490:32;25487:52;;;25535:1;25532;25525:12;25487:52;25567:9;25561:16;25586:30;25610:5;25586:30;:::i

Swarm Source

ipfs://8d9f0b5801fff83c0bb9308ef89ac5abb4fcc0dc94fd66ac3796cba06386c692
Loading...
Loading
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.