ETH Price: $3,306.01 (-3.32%)
Gas: 15 Gwei

Token

MIC-316VC (MIC-316VC)
 

Overview

Max Total Supply

2,158 MIC-316VC

Holders

262

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

0xae67fcdd049e7be4d9f9786adc2a207982bb50c9
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:
MIC316VC

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 15 of 18: MIC316VC.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./ERC1155.sol";
import "./MerkleProof.sol";
import "./SafeMath.sol";
import "./Counters.sol";
import "./Abstract316VC.sol";

contract MIC316VC is Abstract316VC {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
	
    Counters.Counter private TierCounter; 
    mapping(uint256 => Tier) public Tiers;
    event Mint(address indexed account, uint amount);
	
    struct Tier {
        bytes32 merkleRoot;
        uint256 totalSupply;
        uint256 totalMinted;
		uint256 price;
		uint256 mintLimit;
		uint256 mintPerTransectionLimit;
		bool status;
		bool whiteliststatus;
        string ipfsMetadataHash;
		mapping(address => uint256) mintedNFT;
    }
	
    constructor() ERC1155("ipfs://") {
    }
	
    function addTier(
		bytes32 _merkleRoot, 
		uint256 _totalSupply, 
		uint256 _price, 
		uint256 _mintLimit, 
		uint256 _mintPerTransectionLimit, 
		string memory _ipfsMetadataHash
	) external onlyOwner {
        Tier storage tier = Tiers[TierCounter.current()];
        tier.merkleRoot = _merkleRoot;
        tier.totalSupply = _totalSupply;
        tier.price = _price;
		tier.mintLimit = _mintLimit;
		tier.mintPerTransectionLimit = _mintPerTransectionLimit;
		tier.ipfsMetadataHash = _ipfsMetadataHash;
		tier.status = false;
		tier.whiteliststatus = false;
        TierCounter.increment();
    }
	
	function editTier (
		bytes32 _merkleRoot, 
		uint256 _totalSupply, 
		uint256 _price, 
		uint256 _mintLimit, 
		uint256 _mintPerTransectionLimit, 
		string memory _ipfsMetadataHash, 
		uint256 _tierIndex
	) external onlyOwner {
        require(_totalSupply >= Tiers[_tierIndex].totalMinted, "Incorrect total supply");
		Tiers[_tierIndex].merkleRoot = _merkleRoot;
        Tiers[_tierIndex].totalSupply = _totalSupply;
        Tiers[_tierIndex].price = _price;
		Tiers[_tierIndex].mintLimit = _mintLimit;
		Tiers[_tierIndex].mintPerTransectionLimit = _mintPerTransectionLimit;
		Tiers[_tierIndex].ipfsMetadataHash = _ipfsMetadataHash;
    }
	
	function mintGiveawayNFT(address _to, uint256 _count, uint256 _tierIndex) external onlyOwner {
		require(
		   !paused(), 
		   "contract is paused"
		);
        require(
			Tiers[_tierIndex].totalSupply != 0, 
			"Tier does not exist"
		);
		require(
			Tiers[_tierIndex].totalMinted.add(_count) <= Tiers[_tierIndex].totalSupply, 
			"Exceeds total supply limit"
		);
		Tiers[_tierIndex].totalMinted = Tiers[_tierIndex].totalMinted.add(_count);
        _mint(_to, _tierIndex, _count, "");
        emit Mint(_to, _count);
    }
	
	function mintWhiteListNFT(uint256 _count, uint256 _tierIndex, bytes32[] calldata merkleProof) external payable {
	    bytes32 node = keccak256(abi.encodePacked(msg.sender));
		require(
		   !paused(), 
		   "contract is paused"
		);
        require(
			Tiers[_tierIndex].totalSupply != 0, 
			"Tier does not exist"
		);
		require(
			Tiers[_tierIndex].whiteliststatus, 
			"Sale is not enable"
		);
        require(
			msg.value >= _count.mul(Tiers[_tierIndex].price), 
			"Ether value incorrect"
		);
		require(
			Tiers[_tierIndex].totalMinted.add(_count) <= Tiers[_tierIndex].totalSupply, 
			"Exceeds total supply limit"
		);
        require(
			Tiers[_tierIndex].mintedNFT[msg.sender].add(_count) <= Tiers[_tierIndex].mintLimit, 
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= Tiers[_tierIndex].mintPerTransectionLimit,
			"Exceeds max mint limit per transaction"
		);
		require(
			MerkleProof.verify(merkleProof, Tiers[_tierIndex].merkleRoot, node), 
			"MerkleDistributor: Invalid proof."
		);
        Tiers[_tierIndex].mintedNFT[msg.sender] = Tiers[_tierIndex].mintedNFT[msg.sender].add(_count);
		Tiers[_tierIndex].totalMinted = Tiers[_tierIndex].totalMinted.add(_count);
        _mint(msg.sender, _tierIndex, _count, "");
        emit Mint(msg.sender, _count);
    }
	
	function mintNFT(uint256 _count, uint256 _tierIndex) external payable {
		require(
		   !paused(), 
		   "contract is paused"
		);
        require(
			Tiers[_tierIndex].totalSupply != 0, 
			"Tier does not exist"
		);
		require(
			Tiers[_tierIndex].status, 
			"Sale is not enable"
		);
        require(
			msg.value >= _count.mul(Tiers[_tierIndex].price), 
			"Ether value incorrect"
		);
		require(
			Tiers[_tierIndex].totalMinted.add(_count) <= Tiers[_tierIndex].totalSupply, 
			"Exceeds total supply limit"
		);
        require(
			Tiers[_tierIndex].mintedNFT[msg.sender].add(_count) <= Tiers[_tierIndex].mintLimit, 
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= Tiers[_tierIndex].mintPerTransectionLimit,
			"Exceeds max mint limit per transaction"
		);
		
        Tiers[_tierIndex].mintedNFT[msg.sender] = Tiers[_tierIndex].mintedNFT[msg.sender].add(_count);
		Tiers[_tierIndex].totalMinted = Tiers[_tierIndex].totalMinted.add(_count);
		
        _mint(msg.sender, _tierIndex, _count, "");
        emit Mint(msg.sender, _count);
    }
	
	function updateSaleStatus (uint256 _tierIndex, bool _status) external onlyOwner {
		Tiers[_tierIndex].status = _status;
    }
	
	function updateWhitelistStatus (uint256 _tierIndex, bool _status) external onlyOwner {
		Tiers[_tierIndex].whiteliststatus = _status;
    }
	
	function updateMintLimit (uint256 _tierIndex, uint256 _limit) external onlyOwner {
		Tiers[_tierIndex].mintLimit = _limit;
    }
	
	function updateMerkleRoot (uint256 _tierIndex, bytes32 _merkleRoot) external onlyOwner {
		Tiers[_tierIndex].merkleRoot = _merkleRoot;
    }
	
	function updatePrice (uint256 _tierIndex, uint256 _price) external onlyOwner {
		Tiers[_tierIndex].price = _price;
    }
	
	function updateipfsMetadataHash (uint256 _tierIndex, string memory _string) external onlyOwner {
		Tiers[_tierIndex].ipfsMetadataHash = _string;
    }
	
	function updateMintPerTransectionLimit (uint256 _tierIndex, uint256 _mintPerTransectionLimit) external onlyOwner {
		Tiers[_tierIndex].mintPerTransectionLimit = _mintPerTransectionLimit;
    }
	
	function updateTotalSupply (uint256 _tierIndex, uint256 _totalSupply) external onlyOwner {
		Tiers[_tierIndex].totalSupply = _totalSupply;
    }
	
    function withdrawEther(address payable _to) public onlyOwner{
	    uint256 balance = address(this).balance;
        _to.transfer(balance);
    }
	
	function getSaleMinted(uint256 tier, address userAdress) public view returns (uint256) {
        return Tiers[tier].mintedNFT[userAdress];
    }
	
    function uri(uint256 _id) public view override returns (string memory) {
       require(totalSupply(_id) > 0, "URI: nonexistent token");
       return string(abi.encodePacked(super.uri(_id), Tiers[_id].ipfsMetadataHash));
    }    
}

File 1 of 18: Abstract316VC.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import './Ownable.sol';
import './ERC1155Burnable.sol';
import './ERC1155Pausable.sol';
import './ERC1155Supply.sol';

abstract contract Abstract316VC is ERC1155Pausable, ERC1155Supply, ERC1155Burnable, Ownable {
    
    string private name_ = 'MIC-316VC';
    string private symbol_ = 'MIC-316VC';   
    
    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }    

    function setURI(string memory baseURI) external onlyOwner {
        _setURI(baseURI);
    }    

    function name() public view returns (string memory) {
        return name_;
    }

    function symbol() public view returns (string memory) {
        return symbol_;
    }          

    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override(ERC1155, ERC1155Supply) {
        super._mint(account, id, amount, data);
    }

    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155, ERC1155Supply) {
        super._mintBatch(to, ids, amounts, data);
    }

    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override(ERC1155, ERC1155Supply) {
        super._burn(account, id, amount);
    }

    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override(ERC1155, ERC1155Supply) {
        super._burnBatch(account, ids, amounts);
    }  

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override(ERC1155Pausable, ERC1155) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }  
}

File 2 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 3 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 4 of 18: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 5 of 18: ERC1155.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./IERC1155MetadataURI.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `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 memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - 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[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] += amount;
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * 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 _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 accountBalance = _balances[id][account];
        require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][account] = accountBalance - amount;
        }

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 accountBalance = _balances[id][account];
            require(accountBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][account] = accountBalance - amount;
            }
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 6 of 18: ERC1155Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC1155.sol";

/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

File 7 of 18: ERC1155Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC1155.sol";
import "./Pausable.sol";

/**
 * @dev ERC1155 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Pausable is ERC1155, Pausable {
    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        require(!paused(), "ERC1155Pausable: token transfer while paused");
    }
}

File 8 of 18: ERC1155Supply.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates weither any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_mint}.
     */
    function _mint(
        address account,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual override {
        super._mint(account, id, amount, data);
        _totalSupply[id] += amount;
    }

    /**
     * @dev See {ERC1155-_mintBatch}.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._mintBatch(to, ids, amounts, data);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] += amounts[i];
        }
    }

    /**
     * @dev See {ERC1155-_burn}.
     */
    function _burn(
        address account,
        uint256 id,
        uint256 amount
    ) internal virtual override {
        super._burn(account, id, amount);
        _totalSupply[id] -= amount;
    }

    /**
     * @dev See {ERC1155-_burnBatch}.
     */
    function _burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual override {
        super._burnBatch(account, ids, amounts);
        for (uint256 i = 0; i < ids.length; ++i) {
            _totalSupply[ids[i]] -= amounts[i];
        }
    }
}

File 9 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 10 of 18: IERC1155.sol
// SPDX-License-Identifier: MIT

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 `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @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 11 of 18: IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 12 of 18: IERC1155Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 13 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 14 of 18: MerkleProof.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

File 16 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 17 of 18: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 18 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;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","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"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"Tiers","outputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"totalMinted","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"mintLimit","type":"uint256"},{"internalType":"uint256","name":"mintPerTransectionLimit","type":"uint256"},{"internalType":"bool","name":"status","type":"bool"},{"internalType":"bool","name":"whiteliststatus","type":"bool"},{"internalType":"string","name":"ipfsMetadataHash","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_mintLimit","type":"uint256"},{"internalType":"uint256","name":"_mintPerTransectionLimit","type":"uint256"},{"internalType":"string","name":"_ipfsMetadataHash","type":"string"}],"name":"addTier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_mintLimit","type":"uint256"},{"internalType":"uint256","name":"_mintPerTransectionLimit","type":"uint256"},{"internalType":"string","name":"_ipfsMetadataHash","type":"string"},{"internalType":"uint256","name":"_tierIndex","type":"uint256"}],"name":"editTier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tier","type":"uint256"},{"internalType":"address","name":"userAdress","type":"address"}],"name":"getSaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"_tierIndex","type":"uint256"}],"name":"mintGiveawayNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"_tierIndex","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"_tierIndex","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintWhiteListNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tierIndex","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tierIndex","type":"uint256"},{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"updateMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tierIndex","type":"uint256"},{"internalType":"uint256","name":"_mintPerTransectionLimit","type":"uint256"}],"name":"updateMintPerTransectionLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tierIndex","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"updatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tierIndex","type":"uint256"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tierIndex","type":"uint256"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"name":"updateTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tierIndex","type":"uint256"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tierIndex","type":"uint256"},{"internalType":"string","name":"_string","type":"string"}],"name":"updateipfsMetadataHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_to","type":"address"}],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260096080819052684d49432d333136564360b81b60a09081526200002c91600691906200011e565b50604080518082019091526009808252684d49432d333136564360b81b60209092019182526200005f916007916200011e565b503480156200006d57600080fd5b50604080518082019091526007815266697066733a2f2f60c81b60208201526200009781620000b3565b506003805460ff19169055620000ad33620000cc565b62000201565b8051620000c89060029060208401906200011e565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012c90620001c4565b90600052602060002090601f0160209004810192826200015057600085556200019b565b82601f106200016b57805160ff19168380011785556200019b565b828001600101855582156200019b579182015b828111156200019b5782518255916020019190600101906200017e565b50620001a9929150620001ad565b5090565b5b80821115620001a95760008155600101620001ae565b600181811c90821680620001d957607f821691505b60208210811415620001fb57634e487b7160e01b600052602260045260246000fd5b50919050565b61377e80620002116000396000f3fe6080604052600436106102195760003560e01c806382367b2d11610123578063bf0c8c16116100ab578063f1e331151161006f578063f1e331151461068d578063f242432a146106ad578063f2fde38b146106cd578063f5298aca146106ed578063f8b4ab7a1461070d57600080fd5b8063bf0c8c16146105bc578063bf3952d7146105dc578063c48283ff14610611578063d40ca89814610624578063e985e9c51461064457600080fd5b806395d89b41116100f257806395d89b411461051a578063a22cb4651461052f578063af933b571461054f578063b6e7d0131461056f578063bd85b0391461058f57600080fd5b806382367b2d146104765780638456cb59146104965780638d1c0ce9146104ab5780638da5cb5b146104f257600080fd5b80633f4ba83a116101a657806364aa74e41161017557806364aa74e4146103ee5780636b20c45414610401578063715018a61461042157806378a4b4d7146104365780637a3144151461045657600080fd5b80633f4ba83a146103655780634e1273f41461037a5780634f558e79146103a75780635c975abb146103d657600080fd5b80630e89341c116101ed5780630e89341c146102c55780631393249b146102e5578063150f885e146103055780632eb2c2d61461032557806336d2a23d1461034557600080fd5b8062fdd58e1461021e57806301ffc9a71461025157806302fe53051461028157806306fdde03146102a3575b600080fd5b34801561022a57600080fd5b5061023e610239366004612be1565b61072d565b6040519081526020015b60405180910390f35b34801561025d57600080fd5b5061027161026c366004612de9565b6107c4565b6040519015158152602001610248565b34801561028d57600080fd5b506102a161029c366004612e21565b610816565b005b3480156102af57600080fd5b506102b861084c565b60405161024891906131e3565b3480156102d157600080fd5b506102b86102e0366004612e5b565b6108de565b3480156102f157600080fd5b506102a1610300366004612d75565b610978565b34801561031157600080fd5b506102a1610320366004612eb9565b610a4a565b34801561033157600080fd5b506102a1610340366004612a2c565b610a89565b34801561035157600080fd5b506102a1610360366004612e97565b610b20565b34801561037157600080fd5b506102a1610b74565b34801561038657600080fd5b5061039a610395366004612c40565b610ba8565b6040516102489190613149565b3480156103b357600080fd5b506102716103c2366004612e5b565b600090815260046020526040902054151590565b3480156103e257600080fd5b5060035460ff16610271565b6102a16103fc366004612f14565b610d09565b34801561040d57600080fd5b506102a161041c366004612b3b565b611085565b34801561042d57600080fd5b506102a16110cd565b34801561044257600080fd5b506102a1610451366004612d0c565b611101565b34801561046257600080fd5b506102a1610471366004612eda565b6111a6565b34801561048257600080fd5b506102a1610491366004612eb9565b6111f5565b3480156104a257600080fd5b506102a1611234565b3480156104b757600080fd5b5061023e6104c6366004612e73565b60008281526009602090815260408083206001600160a01b038516845260080190915290205492915050565b3480156104fe57600080fd5b506005546040516001600160a01b039091168152602001610248565b34801561052657600080fd5b506102b8611266565b34801561053b57600080fd5b506102a161054a366004612bad565b611275565b34801561055b57600080fd5b506102a161056a3660046129d8565b61134c565b34801561057b57600080fd5b506102a161058a366004612c0c565b6113ae565b34801561059b57600080fd5b5061023e6105aa366004612e5b565b60009081526004602052604090205490565b3480156105c857600080fd5b506102a16105d7366004612e97565b611503565b3480156105e857600080fd5b506105fc6105f7366004612e5b565b611550565b6040516102489998979695949392919061318a565b6102a161061f366004612eb9565b61162c565b34801561063057600080fd5b506102a161063f366004612eb9565b6118c0565b34801561065057600080fd5b5061027161065f3660046129f4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561069957600080fd5b506102a16106a8366004612eb9565b6118ff565b3480156106b957600080fd5b506102a16106c8366004612ad5565b61193b565b3480156106d957600080fd5b506102a16106e83660046129d8565b611980565b3480156106f957600080fd5b506102a1610708366004612c0c565b611a18565b34801561071957600080fd5b506102a1610728366004612eb9565b611a5b565b60006001600160a01b03831661079e5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806107f557506001600160e01b031982166303a24d0760e21b145b8061081057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6005546001600160a01b031633146108405760405162461bcd60e51b81526004016107959061342d565b61084981611a9a565b50565b60606006805461085b906135ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610887906135ce565b80156108d45780601f106108a9576101008083540402835291602001916108d4565b820191906000526020600020905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b600081815260046020526040812054606091106109365760405162461bcd60e51b81526020600482015260166024820152752aa9249d103737b732bc34b9ba32b73a103a37b5b2b760511b6044820152606401610795565b61093f82611ab1565b600083815260096020908152604091829020915161096293926007019101612ff7565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146109a25760405162461bcd60e51b81526004016107959061342d565b6000818152600960205260409020600201548610156109fc5760405162461bcd60e51b8152602060048201526016602482015275496e636f727265637420746f74616c20737570706c7960501b6044820152606401610795565b6000818152600960209081526040909120888155600181018890556003810187905560048101869055600581018590558351610a4092600790920191850190612848565b5050505050505050565b6005546001600160a01b03163314610a745760405162461bcd60e51b81526004016107959061342d565b60009182526009602052604090912060040155565b6001600160a01b038516331480610aa55750610aa5853361065f565b610b0c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610795565b610b198585858585611b45565b5050505050565b6005546001600160a01b03163314610b4a5760405162461bcd60e51b81526004016107959061342d565b60009182526009602052604090912060060180549115156101000261ff0019909216919091179055565b6005546001600160a01b03163314610b9e5760405162461bcd60e51b81526004016107959061342d565b610ba6611d0b565b565b60608151835114610c0d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610795565b600083516001600160401b03811115610c3657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c5f578160200160208202803683370190505b50905060005b8451811015610d0157610cc6858281518110610c9157634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610cb957634e487b7160e01b600052603260045260246000fd5b602002602001015161072d565b828281518110610ce657634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610cfa81613635565b9050610c65565b509392505050565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d4e60035460ff1690565b15610d6b5760405162461bcd60e51b815260040161079590613302565b600084815260096020526040902060010154610d995760405162461bcd60e51b81526004016107959061332e565b600084815260096020526040902060060154610100900460ff16610df45760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f7420656e61626c6560701b6044820152606401610795565b600084815260096020526040902060030154610e11908690611d9e565b341015610e585760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b6044820152606401610795565b60008481526009602052604090206001810154600290910154610e7b9087611db1565b1115610e995760405162461bcd60e51b81526004016107959061323e565b60008481526009602090815260408083206004810154338552600890910190925290912054610ec89087611db1565b1115610ee65760405162461bcd60e51b815260040161079590613462565b600084815260096020526040902060050154851115610f175760405162461bcd60e51b8152600401610795906134a3565b610f628383808060200260200160405190810160405280939291908181526020018383602002808284376000920182905250898152600960205260409020549250859150611dbd9050565b610fb85760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b6064820152608401610795565b6000848152600960209081526040808320338452600801909152902054610fdf9086611db1565b600085815260096020818152604080842033855260088101835290842094909455918790529052600201546110149086611db1565b600960008681526020019081526020016000206002018190555061104933858760405180602001604052806000815250611e7a565b60405185815233907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859060200160405180910390a25050505050565b6001600160a01b0383163314806110a157506110a1833361065f565b6110bd5760405162461bcd60e51b8152600401610795906132b9565b6110c8838383611e8c565b505050565b6005546001600160a01b031633146110f75760405162461bcd60e51b81526004016107959061342d565b610ba66000611e97565b6005546001600160a01b0316331461112b5760405162461bcd60e51b81526004016107959061342d565b60006009600061113a60085490565b815260208082019290925260400160002088815560018101889055600381018790556004810186905560058101859055835190925061118191600784019190850190612848565b5060068101805461ffff1916905561119d600880546001019055565b50505050505050565b6005546001600160a01b031633146111d05760405162461bcd60e51b81526004016107959061342d565b600082815260096020908152604090912082516110c892600790920191840190612848565b6005546001600160a01b0316331461121f5760405162461bcd60e51b81526004016107959061342d565b60009182526009602052604090912060030155565b6005546001600160a01b0316331461125e5760405162461bcd60e51b81526004016107959061342d565b610ba6611ee9565b60606007805461085b906135ce565b336001600160a01b03831614156112e05760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610795565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146113765760405162461bcd60e51b81526004016107959061342d565b60405147906001600160a01b0383169082156108fc029083906000818181858888f193505050501580156110c8573d6000803e3d6000fd5b6005546001600160a01b031633146113d85760405162461bcd60e51b81526004016107959061342d565b60035460ff16156113fb5760405162461bcd60e51b815260040161079590613302565b6000818152600960205260409020600101546114295760405162461bcd60e51b81526004016107959061332e565b6000818152600960205260409020600181015460029091015461144c9084611db1565b111561146a5760405162461bcd60e51b81526004016107959061323e565b6000818152600960205260409020600201546114869083611db1565b60096000838152602001908152602001600020600201819055506114bb83828460405180602001604052806000815250611e7a565b826001600160a01b03167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885836040516114f691815260200190565b60405180910390a2505050565b6005546001600160a01b0316331461152d5760405162461bcd60e51b81526004016107959061342d565b600091825260096020526040909120600601805460ff1916911515919091179055565b6009602052600090815260409020805460018201546002830154600384015460048501546005860154600687015460078801805497989697959694959394929360ff80841694610100909404169291906115a9906135ce565b80601f01602080910402602001604051908101604052809291908181526020018280546115d5906135ce565b80156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b5050505050905089565b60035460ff161561164f5760405162461bcd60e51b815260040161079590613302565b60008181526009602052604090206001015461167d5760405162461bcd60e51b81526004016107959061332e565b60008181526009602052604090206006015460ff166116d35760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f7420656e61626c6560701b6044820152606401610795565b6000818152600960205260409020600301546116f0908390611d9e565b3410156117375760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b6044820152606401610795565b6000818152600960205260409020600181015460029091015461175a9084611db1565b11156117785760405162461bcd60e51b81526004016107959061323e565b600081815260096020908152604080832060048101543385526008909101909252909120546117a79084611db1565b11156117c55760405162461bcd60e51b815260040161079590613462565b6000818152600960205260409020600501548211156117f65760405162461bcd60e51b8152600401610795906134a3565b600081815260096020908152604080832033845260080190915290205461181d9083611db1565b600082815260096020818152604080842033855260088101835290842094909455918490529052600201546118529083611db1565b600960008381526020019081526020016000206002018190555061188733828460405180602001604052806000815250611e7a565b60405182815233907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859060200160405180910390a25050565b6005546001600160a01b031633146118ea5760405162461bcd60e51b81526004016107959061342d565b60009182526009602052604090912060050155565b6005546001600160a01b031633146119295760405162461bcd60e51b81526004016107959061342d565b60009182526009602052604090912055565b6001600160a01b0385163314806119575750611957853361065f565b6119735760405162461bcd60e51b8152600401610795906132b9565b610b198585858585611f64565b6005546001600160a01b031633146119aa5760405162461bcd60e51b81526004016107959061342d565b6001600160a01b038116611a0f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610795565b61084981611e97565b6001600160a01b038316331480611a345750611a34833361065f565b611a505760405162461bcd60e51b8152600401610795906132b9565b6110c8838383612087565b6005546001600160a01b03163314611a855760405162461bcd60e51b81526004016107959061342d565b60009182526009602052604090912060010155565b8051611aad906002906020840190612848565b5050565b606060028054611ac0906135ce565b80601f0160208091040260200160405190810160405280929190818152602001828054611aec906135ce565b8015611b395780601f10611b0e57610100808354040283529160200191611b39565b820191906000526020600020905b815481529060010190602001808311611b1c57829003601f168201915b50505050509050919050565b8151835114611b665760405162461bcd60e51b8152600401610795906134e9565b6001600160a01b038416611b8c5760405162461bcd60e51b81526004016107959061335b565b33611b9b818787878787612092565b60005b8451811015611c9d576000858281518110611bc957634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110611bf557634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611c455760405162461bcd60e51b8152600401610795906133e3565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611c82908490613554565b9250508190555050505080611c9690613635565b9050611b9e565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ced92919061315c565b60405180910390a4611d038187878787876120a0565b505050505050565b60035460ff16611d545760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610795565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611daa828461356c565b9392505050565b6000611daa8284613554565b600081815b8551811015611e6f576000868281518110611ded57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611e2f576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611e5c565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611e6781613635565b915050611dc2565b509092149392505050565b611e868484848461220b565b50505050565b6110c8838383612240565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60035460ff1615611f2f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610795565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d813390565b6001600160a01b038416611f8a5760405162461bcd60e51b81526004016107959061335b565b33611fa9818787611f9a886122de565b611fa3886122de565b87612092565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611fea5760405162461bcd60e51b8152600401610795906133e3565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290612027908490613554565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461119d828888888888612337565b6110c8838383612401565b611d03868686868686612434565b6001600160a01b0384163b15611d035760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906120e490899089908890889088906004016130a6565b602060405180830381600087803b1580156120fe57600080fd5b505af192505050801561212e575060408051601f3d908101601f1916820190925261212b91810190612e05565b60015b6121db5761213a61367c565b806308c379a01415612174575061214f613694565b8061215a5750612176565b8060405162461bcd60e51b815260040161079591906131e3565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610795565b6001600160e01b0319811663bc197c8160e01b1461119d5760405162461bcd60e51b8152600401610795906131f6565b6122178484848461249c565b60008381526004602052604081208054849290612235908490613554565b909155505050505050565b61224b83838361259d565b60005b8251811015611e865781818151811061227757634e487b7160e01b600052603260045260246000fd5b6020026020010151600460008584815181106122a357634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546122c8919061358b565b909155506122d7905081613635565b905061224e565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061232657634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b15611d035760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061237b9089908990889088908890600401613104565b602060405180830381600087803b15801561239557600080fd5b505af19250505080156123c5575060408051601f3d908101601f191682019092526123c291810190612e05565b60015b6123d15761213a61367c565b6001600160e01b0319811663f23a6e6160e01b1461119d5760405162461bcd60e51b8152600401610795906131f6565b61240c838383612747565b6000828152600460205260408120805483929061242a90849061358b565b9091555050505050565b60035460ff1615611d035760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b6064820152608401610795565b6001600160a01b0384166124fc5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610795565b3361250d81600087611f9a886122de565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061253d908490613554565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610b1981600087878787612337565b6001600160a01b0383166125c35760405162461bcd60e51b8152600401610795906133a0565b80518251146125e45760405162461bcd60e51b8152600401610795906134e9565b600033905061260781856000868660405180602001604052806000815250612092565b60005b83518110156126e857600084828151811061263557634e487b7160e01b600052603260045260246000fd5b60200260200101519050600084838151811061266157634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156126b15760405162461bcd60e51b815260040161079590613275565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806126e081613635565b91505061260a565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161273992919061315c565b60405180910390a450505050565b6001600160a01b03831661276d5760405162461bcd60e51b8152600401610795906133a0565b3361279c8185600061277e876122de565b612787876122de565b60405180602001604052806000815250612092565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156127dd5760405162461bcd60e51b815260040161079590613275565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b828054612854906135ce565b90600052602060002090601f01602090048101928261287657600085556128bc565b82601f1061288f57805160ff19168380011785556128bc565b828001600101855582156128bc579182015b828111156128bc5782518255916020019190600101906128a1565b506128c89291506128cc565b5090565b5b808211156128c857600081556001016128cd565b600082601f8301126128f1578081fd5b813560206128fe82613531565b60405161290b8282613609565b8381528281019150858301600585901b8701840188101561292a578586fd5b855b858110156129485781358452928401929084019060010161292c565b5090979650505050505050565b8035801515811461296557600080fd5b919050565b600082601f83011261297a578081fd5b81356001600160401b0381111561299357612993613666565b6040516129aa601f8301601f191660200182613609565b8181528460208386010111156129be578283fd5b816020850160208301379081016020019190915292915050565b6000602082840312156129e9578081fd5b8135611daa8161371d565b60008060408385031215612a06578081fd5b8235612a118161371d565b91506020830135612a218161371d565b809150509250929050565b600080600080600060a08688031215612a43578081fd5b8535612a4e8161371d565b94506020860135612a5e8161371d565b935060408601356001600160401b0380821115612a79578283fd5b612a8589838a016128e1565b94506060880135915080821115612a9a578283fd5b612aa689838a016128e1565b93506080880135915080821115612abb578283fd5b50612ac88882890161296a565b9150509295509295909350565b600080600080600060a08688031215612aec578081fd5b8535612af78161371d565b94506020860135612b078161371d565b9350604086013592506060860135915060808601356001600160401b03811115612b2f578182fd5b612ac88882890161296a565b600080600060608486031215612b4f578283fd5b8335612b5a8161371d565b925060208401356001600160401b0380821115612b75578384fd5b612b81878388016128e1565b93506040860135915080821115612b96578283fd5b50612ba3868287016128e1565b9150509250925092565b60008060408385031215612bbf578081fd5b8235612bca8161371d565b9150612bd860208401612955565b90509250929050565b60008060408385031215612bf3578182fd5b8235612bfe8161371d565b946020939093013593505050565b600080600060608486031215612c20578081fd5b8335612c2b8161371d565b95602085013595506040909401359392505050565b60008060408385031215612c52578182fd5b82356001600160401b0380821115612c68578384fd5b818501915085601f830112612c7b578384fd5b81356020612c8882613531565b604051612c958282613609565b8381528281019150858301600585901b870184018b1015612cb4578889fd5b8896505b84871015612cdf578035612ccb8161371d565b835260019690960195918301918301612cb8565b5096505086013592505080821115612cf5578283fd5b50612d02858286016128e1565b9150509250929050565b60008060008060008060c08789031215612d24578384fd5b863595506020870135945060408701359350606087013592506080870135915060a08701356001600160401b03811115612d5c578182fd5b612d6889828a0161296a565b9150509295509295509295565b600080600080600080600060e0888a031215612d8f578485fd5b873596506020880135955060408801359450606088013593506080880135925060a08801356001600160401b03811115612dc7578182fd5b612dd38a828b0161296a565b92505060c0880135905092959891949750929550565b600060208284031215612dfa578081fd5b8135611daa81613732565b600060208284031215612e16578081fd5b8151611daa81613732565b600060208284031215612e32578081fd5b81356001600160401b03811115612e47578182fd5b612e538482850161296a565b949350505050565b600060208284031215612e6c578081fd5b5035919050565b60008060408385031215612e85578182fd5b823591506020830135612a218161371d565b60008060408385031215612ea9578182fd5b82359150612bd860208401612955565b60008060408385031215612ecb578182fd5b50508035926020909101359150565b60008060408385031215612eec578182fd5b8235915060208301356001600160401b03811115612f08578182fd5b612d028582860161296a565b60008060008060608587031215612f29578182fd5b843593506020850135925060408501356001600160401b0380821115612f4d578384fd5b818701915087601f830112612f60578384fd5b813581811115612f6e578485fd5b8860208260051b8501011115612f82578485fd5b95989497505060200194505050565b6000815180845260208085019450808401835b83811015612fc057815187529582019590820190600101612fa4565b509495945050505050565b60008151808452612fe38160208601602086016135a2565b601f01601f19169290920160200192915050565b60008351602061300a82858389016135a2565b8454918401918390600181811c908083168061302757607f831692505b85831081141561304557634e487b7160e01b88526022600452602488fd5b808015613059576001811461306a57613096565b60ff19851688528388019550613096565b60008b815260209020895b8581101561308e5781548a820152908401908801613075565b505083880195505b50939a9950505050505050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906130d290830186612f91565b82810360608401526130e48186612f91565b905082810360808401526130f88185612fcb565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061313e90830184612fcb565b979650505050505050565b602081526000611daa6020830184612f91565b60408152600061316f6040830185612f91565b82810360208401526131818185612f91565b95945050505050565b60006101208b83528a60208401528960408401528860608401528760808401528660a084015285151560c084015284151560e0840152806101008401526131d381840185612fcb565b9c9b505050505050505050505050565b602081526000611daa6020830184612fcb565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252601a908201527f4578636565647320746f74616c20737570706c79206c696d6974000000000000604082015260600190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526012908201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260139082015272151a595c88191bd95cc81b9bdd08195e1a5cdd606a1b604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60208082526026908201527f45786365656473206d6178206d696e74206c696d697420706572207472616e7360408201526530b1ba34b7b760d11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60006001600160401b0382111561354a5761354a613666565b5060051b60200190565b6000821982111561356757613567613650565b500190565b600081600019048311821515161561358657613586613650565b500290565b60008282101561359d5761359d613650565b500390565b60005b838110156135bd5781810151838201526020016135a5565b83811115611e865750506000910152565b600181811c908216806135e257607f821691505b6020821081141561360357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b038111828210171561362e5761362e613666565b6040525050565b600060001982141561364957613649613650565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561369157600481823e5160e01c5b90565b600060443d10156136a25790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156136d157505050505090565b82850191508151818111156136e95750505050505090565b843d87010160208285010111156137035750505050505090565b61371260208286010187613609565b509095945050505050565b6001600160a01b038116811461084957600080fd5b6001600160e01b03198116811461084957600080fdfea26469706673582212208983a8d6ea2b5a517bc5e0ec258d4f12d0f2839f9464afe025422efa08f1a86d64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106102195760003560e01c806382367b2d11610123578063bf0c8c16116100ab578063f1e331151161006f578063f1e331151461068d578063f242432a146106ad578063f2fde38b146106cd578063f5298aca146106ed578063f8b4ab7a1461070d57600080fd5b8063bf0c8c16146105bc578063bf3952d7146105dc578063c48283ff14610611578063d40ca89814610624578063e985e9c51461064457600080fd5b806395d89b41116100f257806395d89b411461051a578063a22cb4651461052f578063af933b571461054f578063b6e7d0131461056f578063bd85b0391461058f57600080fd5b806382367b2d146104765780638456cb59146104965780638d1c0ce9146104ab5780638da5cb5b146104f257600080fd5b80633f4ba83a116101a657806364aa74e41161017557806364aa74e4146103ee5780636b20c45414610401578063715018a61461042157806378a4b4d7146104365780637a3144151461045657600080fd5b80633f4ba83a146103655780634e1273f41461037a5780634f558e79146103a75780635c975abb146103d657600080fd5b80630e89341c116101ed5780630e89341c146102c55780631393249b146102e5578063150f885e146103055780632eb2c2d61461032557806336d2a23d1461034557600080fd5b8062fdd58e1461021e57806301ffc9a71461025157806302fe53051461028157806306fdde03146102a3575b600080fd5b34801561022a57600080fd5b5061023e610239366004612be1565b61072d565b6040519081526020015b60405180910390f35b34801561025d57600080fd5b5061027161026c366004612de9565b6107c4565b6040519015158152602001610248565b34801561028d57600080fd5b506102a161029c366004612e21565b610816565b005b3480156102af57600080fd5b506102b861084c565b60405161024891906131e3565b3480156102d157600080fd5b506102b86102e0366004612e5b565b6108de565b3480156102f157600080fd5b506102a1610300366004612d75565b610978565b34801561031157600080fd5b506102a1610320366004612eb9565b610a4a565b34801561033157600080fd5b506102a1610340366004612a2c565b610a89565b34801561035157600080fd5b506102a1610360366004612e97565b610b20565b34801561037157600080fd5b506102a1610b74565b34801561038657600080fd5b5061039a610395366004612c40565b610ba8565b6040516102489190613149565b3480156103b357600080fd5b506102716103c2366004612e5b565b600090815260046020526040902054151590565b3480156103e257600080fd5b5060035460ff16610271565b6102a16103fc366004612f14565b610d09565b34801561040d57600080fd5b506102a161041c366004612b3b565b611085565b34801561042d57600080fd5b506102a16110cd565b34801561044257600080fd5b506102a1610451366004612d0c565b611101565b34801561046257600080fd5b506102a1610471366004612eda565b6111a6565b34801561048257600080fd5b506102a1610491366004612eb9565b6111f5565b3480156104a257600080fd5b506102a1611234565b3480156104b757600080fd5b5061023e6104c6366004612e73565b60008281526009602090815260408083206001600160a01b038516845260080190915290205492915050565b3480156104fe57600080fd5b506005546040516001600160a01b039091168152602001610248565b34801561052657600080fd5b506102b8611266565b34801561053b57600080fd5b506102a161054a366004612bad565b611275565b34801561055b57600080fd5b506102a161056a3660046129d8565b61134c565b34801561057b57600080fd5b506102a161058a366004612c0c565b6113ae565b34801561059b57600080fd5b5061023e6105aa366004612e5b565b60009081526004602052604090205490565b3480156105c857600080fd5b506102a16105d7366004612e97565b611503565b3480156105e857600080fd5b506105fc6105f7366004612e5b565b611550565b6040516102489998979695949392919061318a565b6102a161061f366004612eb9565b61162c565b34801561063057600080fd5b506102a161063f366004612eb9565b6118c0565b34801561065057600080fd5b5061027161065f3660046129f4565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561069957600080fd5b506102a16106a8366004612eb9565b6118ff565b3480156106b957600080fd5b506102a16106c8366004612ad5565b61193b565b3480156106d957600080fd5b506102a16106e83660046129d8565b611980565b3480156106f957600080fd5b506102a1610708366004612c0c565b611a18565b34801561071957600080fd5b506102a1610728366004612eb9565b611a5b565b60006001600160a01b03831661079e5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b03198216636cdb3d1360e11b14806107f557506001600160e01b031982166303a24d0760e21b145b8061081057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6005546001600160a01b031633146108405760405162461bcd60e51b81526004016107959061342d565b61084981611a9a565b50565b60606006805461085b906135ce565b80601f0160208091040260200160405190810160405280929190818152602001828054610887906135ce565b80156108d45780601f106108a9576101008083540402835291602001916108d4565b820191906000526020600020905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b600081815260046020526040812054606091106109365760405162461bcd60e51b81526020600482015260166024820152752aa9249d103737b732bc34b9ba32b73a103a37b5b2b760511b6044820152606401610795565b61093f82611ab1565b600083815260096020908152604091829020915161096293926007019101612ff7565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146109a25760405162461bcd60e51b81526004016107959061342d565b6000818152600960205260409020600201548610156109fc5760405162461bcd60e51b8152602060048201526016602482015275496e636f727265637420746f74616c20737570706c7960501b6044820152606401610795565b6000818152600960209081526040909120888155600181018890556003810187905560048101869055600581018590558351610a4092600790920191850190612848565b5050505050505050565b6005546001600160a01b03163314610a745760405162461bcd60e51b81526004016107959061342d565b60009182526009602052604090912060040155565b6001600160a01b038516331480610aa55750610aa5853361065f565b610b0c5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610795565b610b198585858585611b45565b5050505050565b6005546001600160a01b03163314610b4a5760405162461bcd60e51b81526004016107959061342d565b60009182526009602052604090912060060180549115156101000261ff0019909216919091179055565b6005546001600160a01b03163314610b9e5760405162461bcd60e51b81526004016107959061342d565b610ba6611d0b565b565b60608151835114610c0d5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610795565b600083516001600160401b03811115610c3657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c5f578160200160208202803683370190505b50905060005b8451811015610d0157610cc6858281518110610c9157634e487b7160e01b600052603260045260246000fd5b6020026020010151858381518110610cb957634e487b7160e01b600052603260045260246000fd5b602002602001015161072d565b828281518110610ce657634e487b7160e01b600052603260045260246000fd5b6020908102919091010152610cfa81613635565b9050610c65565b509392505050565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d4e60035460ff1690565b15610d6b5760405162461bcd60e51b815260040161079590613302565b600084815260096020526040902060010154610d995760405162461bcd60e51b81526004016107959061332e565b600084815260096020526040902060060154610100900460ff16610df45760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f7420656e61626c6560701b6044820152606401610795565b600084815260096020526040902060030154610e11908690611d9e565b341015610e585760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b6044820152606401610795565b60008481526009602052604090206001810154600290910154610e7b9087611db1565b1115610e995760405162461bcd60e51b81526004016107959061323e565b60008481526009602090815260408083206004810154338552600890910190925290912054610ec89087611db1565b1115610ee65760405162461bcd60e51b815260040161079590613462565b600084815260096020526040902060050154851115610f175760405162461bcd60e51b8152600401610795906134a3565b610f628383808060200260200160405190810160405280939291908181526020018383602002808284376000920182905250898152600960205260409020549250859150611dbd9050565b610fb85760405162461bcd60e51b815260206004820152602160248201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666044820152601760f91b6064820152608401610795565b6000848152600960209081526040808320338452600801909152902054610fdf9086611db1565b600085815260096020818152604080842033855260088101835290842094909455918790529052600201546110149086611db1565b600960008681526020019081526020016000206002018190555061104933858760405180602001604052806000815250611e7a565b60405185815233907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859060200160405180910390a25050505050565b6001600160a01b0383163314806110a157506110a1833361065f565b6110bd5760405162461bcd60e51b8152600401610795906132b9565b6110c8838383611e8c565b505050565b6005546001600160a01b031633146110f75760405162461bcd60e51b81526004016107959061342d565b610ba66000611e97565b6005546001600160a01b0316331461112b5760405162461bcd60e51b81526004016107959061342d565b60006009600061113a60085490565b815260208082019290925260400160002088815560018101889055600381018790556004810186905560058101859055835190925061118191600784019190850190612848565b5060068101805461ffff1916905561119d600880546001019055565b50505050505050565b6005546001600160a01b031633146111d05760405162461bcd60e51b81526004016107959061342d565b600082815260096020908152604090912082516110c892600790920191840190612848565b6005546001600160a01b0316331461121f5760405162461bcd60e51b81526004016107959061342d565b60009182526009602052604090912060030155565b6005546001600160a01b0316331461125e5760405162461bcd60e51b81526004016107959061342d565b610ba6611ee9565b60606007805461085b906135ce565b336001600160a01b03831614156112e05760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610795565b3360008181526001602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146113765760405162461bcd60e51b81526004016107959061342d565b60405147906001600160a01b0383169082156108fc029083906000818181858888f193505050501580156110c8573d6000803e3d6000fd5b6005546001600160a01b031633146113d85760405162461bcd60e51b81526004016107959061342d565b60035460ff16156113fb5760405162461bcd60e51b815260040161079590613302565b6000818152600960205260409020600101546114295760405162461bcd60e51b81526004016107959061332e565b6000818152600960205260409020600181015460029091015461144c9084611db1565b111561146a5760405162461bcd60e51b81526004016107959061323e565b6000818152600960205260409020600201546114869083611db1565b60096000838152602001908152602001600020600201819055506114bb83828460405180602001604052806000815250611e7a565b826001600160a01b03167f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885836040516114f691815260200190565b60405180910390a2505050565b6005546001600160a01b0316331461152d5760405162461bcd60e51b81526004016107959061342d565b600091825260096020526040909120600601805460ff1916911515919091179055565b6009602052600090815260409020805460018201546002830154600384015460048501546005860154600687015460078801805497989697959694959394929360ff80841694610100909404169291906115a9906135ce565b80601f01602080910402602001604051908101604052809291908181526020018280546115d5906135ce565b80156116225780601f106115f757610100808354040283529160200191611622565b820191906000526020600020905b81548152906001019060200180831161160557829003601f168201915b5050505050905089565b60035460ff161561164f5760405162461bcd60e51b815260040161079590613302565b60008181526009602052604090206001015461167d5760405162461bcd60e51b81526004016107959061332e565b60008181526009602052604090206006015460ff166116d35760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f7420656e61626c6560701b6044820152606401610795565b6000818152600960205260409020600301546116f0908390611d9e565b3410156117375760405162461bcd60e51b8152602060048201526015602482015274115d1a195c881d985b1d59481a5b98dbdc9c9958dd605a1b6044820152606401610795565b6000818152600960205260409020600181015460029091015461175a9084611db1565b11156117785760405162461bcd60e51b81526004016107959061323e565b600081815260096020908152604080832060048101543385526008909101909252909120546117a79084611db1565b11156117c55760405162461bcd60e51b815260040161079590613462565b6000818152600960205260409020600501548211156117f65760405162461bcd60e51b8152600401610795906134a3565b600081815260096020908152604080832033845260080190915290205461181d9083611db1565b600082815260096020818152604080842033855260088101835290842094909455918490529052600201546118529083611db1565b600960008381526020019081526020016000206002018190555061188733828460405180602001604052806000815250611e7a565b60405182815233907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d41213968859060200160405180910390a25050565b6005546001600160a01b031633146118ea5760405162461bcd60e51b81526004016107959061342d565b60009182526009602052604090912060050155565b6005546001600160a01b031633146119295760405162461bcd60e51b81526004016107959061342d565b60009182526009602052604090912055565b6001600160a01b0385163314806119575750611957853361065f565b6119735760405162461bcd60e51b8152600401610795906132b9565b610b198585858585611f64565b6005546001600160a01b031633146119aa5760405162461bcd60e51b81526004016107959061342d565b6001600160a01b038116611a0f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610795565b61084981611e97565b6001600160a01b038316331480611a345750611a34833361065f565b611a505760405162461bcd60e51b8152600401610795906132b9565b6110c8838383612087565b6005546001600160a01b03163314611a855760405162461bcd60e51b81526004016107959061342d565b60009182526009602052604090912060010155565b8051611aad906002906020840190612848565b5050565b606060028054611ac0906135ce565b80601f0160208091040260200160405190810160405280929190818152602001828054611aec906135ce565b8015611b395780601f10611b0e57610100808354040283529160200191611b39565b820191906000526020600020905b815481529060010190602001808311611b1c57829003601f168201915b50505050509050919050565b8151835114611b665760405162461bcd60e51b8152600401610795906134e9565b6001600160a01b038416611b8c5760405162461bcd60e51b81526004016107959061335b565b33611b9b818787878787612092565b60005b8451811015611c9d576000858281518110611bc957634e487b7160e01b600052603260045260246000fd5b602002602001015190506000858381518110611bf557634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611c455760405162461bcd60e51b8152600401610795906133e3565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611c82908490613554565b9250508190555050505080611c9690613635565b9050611b9e565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ced92919061315c565b60405180910390a4611d038187878787876120a0565b505050505050565b60035460ff16611d545760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610795565b6003805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000611daa828461356c565b9392505050565b6000611daa8284613554565b600081815b8551811015611e6f576000868281518110611ded57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611e2f576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611e5c565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611e6781613635565b915050611dc2565b509092149392505050565b611e868484848461220b565b50505050565b6110c8838383612240565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60035460ff1615611f2f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610795565b6003805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611d813390565b6001600160a01b038416611f8a5760405162461bcd60e51b81526004016107959061335b565b33611fa9818787611f9a886122de565b611fa3886122de565b87612092565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611fea5760405162461bcd60e51b8152600401610795906133e3565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290612027908490613554565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461119d828888888888612337565b6110c8838383612401565b611d03868686868686612434565b6001600160a01b0384163b15611d035760405163bc197c8160e01b81526001600160a01b0385169063bc197c81906120e490899089908890889088906004016130a6565b602060405180830381600087803b1580156120fe57600080fd5b505af192505050801561212e575060408051601f3d908101601f1916820190925261212b91810190612e05565b60015b6121db5761213a61367c565b806308c379a01415612174575061214f613694565b8061215a5750612176565b8060405162461bcd60e51b815260040161079591906131e3565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610795565b6001600160e01b0319811663bc197c8160e01b1461119d5760405162461bcd60e51b8152600401610795906131f6565b6122178484848461249c565b60008381526004602052604081208054849290612235908490613554565b909155505050505050565b61224b83838361259d565b60005b8251811015611e865781818151811061227757634e487b7160e01b600052603260045260246000fd5b6020026020010151600460008584815181106122a357634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200190815260200160002060008282546122c8919061358b565b909155506122d7905081613635565b905061224e565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061232657634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b6001600160a01b0384163b15611d035760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e619061237b9089908990889088908890600401613104565b602060405180830381600087803b15801561239557600080fd5b505af19250505080156123c5575060408051601f3d908101601f191682019092526123c291810190612e05565b60015b6123d15761213a61367c565b6001600160e01b0319811663f23a6e6160e01b1461119d5760405162461bcd60e51b8152600401610795906131f6565b61240c838383612747565b6000828152600460205260408120805483929061242a90849061358b565b9091555050505050565b60035460ff1615611d035760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201526b1dda1a5b19481c185d5cd95960a21b6064820152608401610795565b6001600160a01b0384166124fc5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610795565b3361250d81600087611f9a886122de565b6000848152602081815260408083206001600160a01b03891684529091528120805485929061253d908490613554565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610b1981600087878787612337565b6001600160a01b0383166125c35760405162461bcd60e51b8152600401610795906133a0565b80518251146125e45760405162461bcd60e51b8152600401610795906134e9565b600033905061260781856000868660405180602001604052806000815250612092565b60005b83518110156126e857600084828151811061263557634e487b7160e01b600052603260045260246000fd5b60200260200101519050600084838151811061266157634e487b7160e01b600052603260045260246000fd5b602090810291909101810151600084815280835260408082206001600160a01b038c1683529093529190912054909150818110156126b15760405162461bcd60e51b815260040161079590613275565b6000928352602083815260408085206001600160a01b038b16865290915290922091039055806126e081613635565b91505061260a565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb868660405161273992919061315c565b60405180910390a450505050565b6001600160a01b03831661276d5760405162461bcd60e51b8152600401610795906133a0565b3361279c8185600061277e876122de565b612787876122de565b60405180602001604052806000815250612092565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156127dd5760405162461bcd60e51b815260040161079590613275565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b828054612854906135ce565b90600052602060002090601f01602090048101928261287657600085556128bc565b82601f1061288f57805160ff19168380011785556128bc565b828001600101855582156128bc579182015b828111156128bc5782518255916020019190600101906128a1565b506128c89291506128cc565b5090565b5b808211156128c857600081556001016128cd565b600082601f8301126128f1578081fd5b813560206128fe82613531565b60405161290b8282613609565b8381528281019150858301600585901b8701840188101561292a578586fd5b855b858110156129485781358452928401929084019060010161292c565b5090979650505050505050565b8035801515811461296557600080fd5b919050565b600082601f83011261297a578081fd5b81356001600160401b0381111561299357612993613666565b6040516129aa601f8301601f191660200182613609565b8181528460208386010111156129be578283fd5b816020850160208301379081016020019190915292915050565b6000602082840312156129e9578081fd5b8135611daa8161371d565b60008060408385031215612a06578081fd5b8235612a118161371d565b91506020830135612a218161371d565b809150509250929050565b600080600080600060a08688031215612a43578081fd5b8535612a4e8161371d565b94506020860135612a5e8161371d565b935060408601356001600160401b0380821115612a79578283fd5b612a8589838a016128e1565b94506060880135915080821115612a9a578283fd5b612aa689838a016128e1565b93506080880135915080821115612abb578283fd5b50612ac88882890161296a565b9150509295509295909350565b600080600080600060a08688031215612aec578081fd5b8535612af78161371d565b94506020860135612b078161371d565b9350604086013592506060860135915060808601356001600160401b03811115612b2f578182fd5b612ac88882890161296a565b600080600060608486031215612b4f578283fd5b8335612b5a8161371d565b925060208401356001600160401b0380821115612b75578384fd5b612b81878388016128e1565b93506040860135915080821115612b96578283fd5b50612ba3868287016128e1565b9150509250925092565b60008060408385031215612bbf578081fd5b8235612bca8161371d565b9150612bd860208401612955565b90509250929050565b60008060408385031215612bf3578182fd5b8235612bfe8161371d565b946020939093013593505050565b600080600060608486031215612c20578081fd5b8335612c2b8161371d565b95602085013595506040909401359392505050565b60008060408385031215612c52578182fd5b82356001600160401b0380821115612c68578384fd5b818501915085601f830112612c7b578384fd5b81356020612c8882613531565b604051612c958282613609565b8381528281019150858301600585901b870184018b1015612cb4578889fd5b8896505b84871015612cdf578035612ccb8161371d565b835260019690960195918301918301612cb8565b5096505086013592505080821115612cf5578283fd5b50612d02858286016128e1565b9150509250929050565b60008060008060008060c08789031215612d24578384fd5b863595506020870135945060408701359350606087013592506080870135915060a08701356001600160401b03811115612d5c578182fd5b612d6889828a0161296a565b9150509295509295509295565b600080600080600080600060e0888a031215612d8f578485fd5b873596506020880135955060408801359450606088013593506080880135925060a08801356001600160401b03811115612dc7578182fd5b612dd38a828b0161296a565b92505060c0880135905092959891949750929550565b600060208284031215612dfa578081fd5b8135611daa81613732565b600060208284031215612e16578081fd5b8151611daa81613732565b600060208284031215612e32578081fd5b81356001600160401b03811115612e47578182fd5b612e538482850161296a565b949350505050565b600060208284031215612e6c578081fd5b5035919050565b60008060408385031215612e85578182fd5b823591506020830135612a218161371d565b60008060408385031215612ea9578182fd5b82359150612bd860208401612955565b60008060408385031215612ecb578182fd5b50508035926020909101359150565b60008060408385031215612eec578182fd5b8235915060208301356001600160401b03811115612f08578182fd5b612d028582860161296a565b60008060008060608587031215612f29578182fd5b843593506020850135925060408501356001600160401b0380821115612f4d578384fd5b818701915087601f830112612f60578384fd5b813581811115612f6e578485fd5b8860208260051b8501011115612f82578485fd5b95989497505060200194505050565b6000815180845260208085019450808401835b83811015612fc057815187529582019590820190600101612fa4565b509495945050505050565b60008151808452612fe38160208601602086016135a2565b601f01601f19169290920160200192915050565b60008351602061300a82858389016135a2565b8454918401918390600181811c908083168061302757607f831692505b85831081141561304557634e487b7160e01b88526022600452602488fd5b808015613059576001811461306a57613096565b60ff19851688528388019550613096565b60008b815260209020895b8581101561308e5781548a820152908401908801613075565b505083880195505b50939a9950505050505050505050565b6001600160a01b0386811682528516602082015260a0604082018190526000906130d290830186612f91565b82810360608401526130e48186612f91565b905082810360808401526130f88185612fcb565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a06080820181905260009061313e90830184612fcb565b979650505050505050565b602081526000611daa6020830184612f91565b60408152600061316f6040830185612f91565b82810360208401526131818185612f91565b95945050505050565b60006101208b83528a60208401528960408401528860608401528760808401528660a084015285151560c084015284151560e0840152806101008401526131d381840185612fcb565b9c9b505050505050505050505050565b602081526000611daa6020830184612fcb565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b6020808252601a908201527f4578636565647320746f74616c20737570706c79206c696d6974000000000000604082015260600190565b60208082526024908201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604082015263616e636560e01b606082015260800190565b60208082526029908201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260408201526808185c1c1c9bdd995960ba1b606082015260800190565b60208082526012908201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260139082015272151a595c88191bd95cc81b9bdd08195e1a5cdd606a1b604082015260600190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252602a908201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60408201526939103a3930b739b332b960b11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60208082526026908201527f45786365656473206d6178206d696e74206c696d697420706572207472616e7360408201526530b1ba34b7b760d11b606082015260800190565b60208082526028908201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206040820152670dad2e6dac2e8c6d60c31b606082015260800190565b60006001600160401b0382111561354a5761354a613666565b5060051b60200190565b6000821982111561356757613567613650565b500190565b600081600019048311821515161561358657613586613650565b500290565b60008282101561359d5761359d613650565b500390565b60005b838110156135bd5781810151838201526020016135a5565b83811115611e865750506000910152565b600181811c908216806135e257607f821691505b6020821081141561360357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f191681016001600160401b038111828210171561362e5761362e613666565b6040525050565b600060001982141561364957613649613650565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d111561369157600481823e5160e01c5b90565b600060443d10156136a25790565b6040516003193d81016004833e81513d6001600160401b0381602484011181841117156136d157505050505090565b82850191508151818111156136e95750505050505090565b843d87010160208285010111156137035750505050505090565b61371260208286010187613609565b509095945050505050565b6001600160a01b038116811461084957600080fd5b6001600160e01b03198116811461084957600080fdfea26469706673582212208983a8d6ea2b5a517bc5e0ec258d4f12d0f2839f9464afe025422efa08f1a86d64736f6c63430008040033

Deployed Bytecode Sourcemap

201:6659:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2122:231:4;;;;;;;;;;-1:-1:-1;2122:231:4;;;;;:::i;:::-;;:::i;:::-;;;29489:25:18;;;29477:2;29462:18;2122:231:4;;;;;;;;1145:310;;;;;;;;;;-1:-1:-1;1145:310:4;;;;;:::i;:::-;;:::i;:::-;;;17390:14:18;;17383:22;17365:41;;17353:2;17338:18;1145:310:4;17320:92:18;534:93:0;;;;;;;;;;-1:-1:-1;534:93:0;;;;;:::i;:::-;;:::i;:::-;;639:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6623:230:13:-;;;;;;;;;;-1:-1:-1;6623:230:13;;;;;:::i;:::-;;:::i;1451:656::-;;;;;;;;;;-1:-1:-1;1451:656:13;;;;;:::i;:::-;;:::i;5390:130::-;;;;;;;;;;-1:-1:-1;5390:130:13;;;;;:::i;:::-;;:::i;4217:442:4:-;;;;;;;;;;-1:-1:-1;4217:442:4;;;;;:::i;:::-;;:::i;5243:141:13:-;;;;;;;;;;-1:-1:-1;5243:141:13;;;;;:::i;:::-;;:::i;455:67:0:-;;;;;;;;;;;;;:::i;2519:524:4:-;;;;;;;;;;-1:-1:-1;2519:524:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;834:122:7:-;;;;;;;;;;-1:-1:-1;834:122:7;;;;;:::i;:::-;891:4;712:16;;;:12;:16;;;;;;-1:-1:-1;;;834:122:7;1072:86:16;;;;;;;;;;-1:-1:-1;1143:7:16;;;;1072:86;;2662:1336:13;;;;;;:::i;:::-;;:::i;654:353:5:-;;;;;;;;;;-1:-1:-1;654:353:5;;;;;:::i;:::-;;:::i;1650:94:15:-;;;;;;;;;;;;;:::i;828:617:13:-;;;;;;;;;;-1:-1:-1;828:617:13;;;;;:::i;:::-;;:::i;5802:152::-;;;;;;;;;;-1:-1:-1;5802:152:13;;;;;:::i;:::-;;:::i;5674:122::-;;;;;;;;;;-1:-1:-1;5674:122:13;;;;;:::i;:::-;;:::i;384:63:0:-;;;;;;;;;;;;;:::i;6468:146:13:-;;;;;;;;;;-1:-1:-1;6468:146:13;;;;;:::i;:::-;6546:7;6573:11;;;:5;:11;;;;;;;;-1:-1:-1;;;;;6573:33:13;;;;:21;;:33;;;;;;6468:146;;;;;999:87:15;;;;;;;;;;-1:-1:-1;1072:6:15;;999:87;;-1:-1:-1;;;;;1072:6:15;;;15031:51:18;;15019:2;15004:18;999:87:15;14986:102:18;730:87:0;;;;;;;;;;;;;:::i;3116:311:4:-;;;;;;;;;;-1:-1:-1;3116:311:4;;;;;:::i;:::-;;:::i;6315:147:13:-;;;;;;;;;;-1:-1:-1;6315:147:13;;;;;:::i;:::-;;:::i;2113:543::-;;;;;;;;;;-1:-1:-1;2113:543:13;;;;;:::i;:::-;;:::i;623:113:7:-;;;;;;;;;;-1:-1:-1;623:113:7;;;;;:::i;:::-;685:7;712:16;;;:12;:16;;;;;;;623:113;5110:127:13;;;;;;;;;;-1:-1:-1;5110:127:13;;;;;:::i;:::-;;:::i;365:37::-;;;;;;;;;;-1:-1:-1;365:37:13;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;;;;:::i;4004:1100::-;;;;;;:::i;:::-;;:::i;5960:194::-;;;;;;;;;;-1:-1:-1;5960:194:13;;;;;:::i;:::-;;:::i;3499:168:4:-;;;;;;;;;;-1:-1:-1;3499:168:4;;;;;:::i;:::-;-1:-1:-1;;;;;3622:27:4;;;3598:4;3622:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;3499:168;5526:142:13;;;;;;;;;;-1:-1:-1;5526:142:13;;;;;:::i;:::-;;:::i;3739:401:4:-;;;;;;;;;;-1:-1:-1;3739:401:4;;;;;:::i;:::-;;:::i;1899:192:15:-;;;;;;;;;;-1:-1:-1;1899:192:15;;;;;:::i;:::-;;:::i;325:321:5:-;;;;;;;;;;-1:-1:-1;325:321:5;;;;;:::i;:::-;;:::i;6160:146:13:-;;;;;;;;;;-1:-1:-1;6160:146:13;;;;;:::i;:::-;;:::i;2122:231:4:-;2208:7;-1:-1:-1;;;;;2236:21:4;;2228:77;;;;-1:-1:-1;;;2228:77:4;;20567:2:18;2228:77:4;;;20549:21:18;20606:2;20586:18;;;20579:30;20645:34;20625:18;;;20618:62;-1:-1:-1;;;20696:18:18;;;20689:41;20747:19;;2228:77:4;;;;;;;;;-1:-1:-1;2323:9:4;:13;;;;;;;;;;;-1:-1:-1;;;;;2323:22:4;;;;;;;;;;;;2122:231::o;1145:310::-;1247:4;-1:-1:-1;;;;;;1284:41:4;;-1:-1:-1;;;1284:41:4;;:110;;-1:-1:-1;;;;;;;1342:52:4;;-1:-1:-1;;;1342:52:4;1284:110;:163;;;-1:-1:-1;;;;;;;;;;896:40:8;;;1411:36:4;1264:183;1145:310;-1:-1:-1;;1145:310:4:o;534:93:0:-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;603:16:0::1;611:7;603;:16::i;:::-;534:93:::0;:::o;639:83::-;676:13;709:5;702:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;639:83;:::o;6623:230:13:-;6731:1;712:16:7;;;:12;:16;;;;;;6679:13:13;;-1:-1:-1;6704:55:13;;;;-1:-1:-1;;;6704:55:13;;26404:2:18;6704:55:13;;;26386:21:18;26443:2;26423:18;;;26416:30;-1:-1:-1;;;26462:18:18;;;26455:52;26524:18;;6704:55:13;26376:172:18;6704:55:13;6800:14;6810:3;6800:9;:14::i;:::-;6816:10;;;;:5;:10;;;;;;;;;6783:61;;;;;6816:27;;;6783:61;;:::i;:::-;;;;;;;;;;;;;6769:76;;6623:230;;;:::o;1451:656::-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;1721:17:13::1;::::0;;;:5:::1;:17;::::0;;;;:29:::1;;::::0;1705:45;::::1;;1697:80;;;::::0;-1:-1:-1;;;1697:80:13;;19103:2:18;1697:80:13::1;::::0;::::1;19085:21:18::0;19142:2;19122:18;;;19115:30;-1:-1:-1;;;19161:18:18;;;19154:52;19223:18;;1697:80:13::1;19075:172:18::0;1697:80:13::1;1782:17;::::0;;;:5:::1;:17;::::0;;;;;;;:42;;;1835:29:::1;::::0;::::1;:44:::0;;;1890:23:::1;::::0;::::1;:32:::0;;;1927:27:::1;::::0;::::1;:40:::0;;;1972:41:::1;::::0;::::1;:68:::0;;;2045:54;;::::1;::::0;:34:::1;::::0;;::::1;::::0;:54;::::1;::::0;::::1;:::i;:::-;;1451:656:::0;;;;;;;:::o;5390:130::-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;5476:17:13::1;::::0;;;:5:::1;:17;::::0;;;;;:27:::1;;:36:::0;5390:130::o;4217:442:4:-;-1:-1:-1;;;;;4450:20:4;;681:10:2;4450:20:4;;:60;;-1:-1:-1;4474:36:4;4491:4;681:10:2;3499:168:4;:::i;4474:36::-;4428:160;;;;-1:-1:-1;;;4428:160:4;;24809:2:18;4428:160:4;;;24791:21:18;24848:2;24828:18;;;24821:30;24887:34;24867:18;;;24860:62;-1:-1:-1;;;24938:18:18;;;24931:48;24996:19;;4428:160:4;24781:240:18;4428:160:4;4599:52;4622:4;4628:2;4632:3;4637:7;4646:4;4599:22;:52::i;:::-;4217:442;;;;;:::o;5243:141:13:-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;5333:17:13::1;::::0;;;:5:::1;:17;::::0;;;;;:33:::1;;:43:::0;;;::::1;;;;-1:-1:-1::0;;5333:43:13;;::::1;::::0;;;::::1;::::0;;5243:141::o;455:67:0:-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;504:10:0::1;:8;:10::i;:::-;455:67::o:0;2519:524:4:-;2675:16;2736:3;:10;2717:8;:15;:29;2709:83;;;;-1:-1:-1;;;2709:83:4;;27567:2:18;2709:83:4;;;27549:21:18;27606:2;27586:18;;;27579:30;27645:34;27625:18;;;27618:62;-1:-1:-1;;;27696:18:18;;;27689:39;27745:19;;2709:83:4;27539:231:18;2709:83:4;2805:30;2852:8;:15;-1:-1:-1;;;;;2838:30:4;;;;;-1:-1:-1;;;2838:30:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2838:30:4;;2805:63;;2886:9;2881:122;2905:8;:15;2901:1;:19;2881:122;;;2961:30;2971:8;2980:1;2971:11;;;;;;-1:-1:-1;;;2971:11:4;;;;;;;;;;;;;;;2984:3;2988:1;2984:6;;;;;;-1:-1:-1;;;2984:6:4;;;;;;;;;;;;;;;2961:9;:30::i;:::-;2942:13;2956:1;2942:16;;;;;;-1:-1:-1;;;2942:16:4;;;;;;;;;;;;;;;;;;:49;2922:3;;;:::i;:::-;;;2881:122;;;-1:-1:-1;3022:13:4;2519:524;-1:-1:-1;;;2519:524:4:o;2662:1336:13:-;2806:28;;-1:-1:-1;;2823:10:13;13204:2:18;13200:15;13196:53;2806:28:13;;;13184:66:18;2781:12:13;;13266::18;;2806:28:13;;;;;;;;;;;;2796:39;;;;;;2781:54;;2856:8;1143:7:16;;;;;1072:86;2856:8:13;2855:9;2840:58;;;;-1:-1:-1;;;2840:58:13;;;;;;;:::i;:::-;2922:17;;;;:5;:17;;;;;:29;;;2909:80;;;;-1:-1:-1;;;2909:80:13;;;;;;;:::i;:::-;3007:17;;;;:5;:17;;;;;:33;;;;;;;;2994:78;;;;-1:-1:-1;;;2994:78:13;;23309:2:18;2994:78:13;;;23291:21:18;23348:2;23328:18;;;23321:30;-1:-1:-1;;;23367:18:18;;;23360:48;23425:18;;2994:78:13;23281:168:18;2994:78:13;3120:17;;;;:5;:17;;;;;:23;;;3109:35;;:6;;:10;:35::i;:::-;3096:9;:48;;3083:96;;;;-1:-1:-1;;;3083:96:13;;29195:2:18;3083:96:13;;;29177:21:18;29234:2;29214:18;;;29207:30;-1:-1:-1;;;29253:18:18;;;29246:51;29314:18;;3083:96:13;29167:171:18;3083:96:13;3242:17;;;;:5;:17;;;;;:29;;;;3197;;;;;:41;;3231:6;3197:33;:41::i;:::-;:74;;3184:127;;;;-1:-1:-1;;;3184:127:13;;;;;;;:::i;:::-;3390:17;;;;:5;:17;;;;;;;;:27;;;;3363:10;3335:39;;:27;;;;:39;;;;;;;:51;;3379:6;3335:43;:51::i;:::-;:82;;3322:142;;;;-1:-1:-1;;;3322:142:13;;;;;;;:::i;:::-;3492:17;;;;:5;:17;;;;;:41;;;3482:51;;;3469:115;;;;-1:-1:-1;;;3469:115:13;;;;;;;:::i;:::-;3602:67;3621:11;;3602:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3634:17:13;;;:5;:17;;;;;:28;;-1:-1:-1;3664:4:13;;-1:-1:-1;3602:18:13;;-1:-1:-1;3602:67:13:i;:::-;3589:127;;;;-1:-1:-1;;;3589:127:13;;24001:2:18;3589:127:13;;;23983:21:18;24040:2;24020:18;;;24013:30;24079:34;24059:18;;;24052:62;-1:-1:-1;;;24130:18:18;;;24123:31;24171:19;;3589:127:13;23973:223:18;3589:127:13;3769:17;;;;:5;:17;;;;;;;;3797:10;3769:39;;:27;;:39;;;;;;:51;;3813:6;3769:43;:51::i;:::-;3727:17;;;;:5;:17;;;;;;;;3755:10;3727:39;;:27;;;:39;;;;;:93;;;;3857:17;;;;;;:29;;;:41;;3891:6;3857:33;:41::i;:::-;3825:5;:17;3831:10;3825:17;;;;;;;;;;;:29;;:73;;;;3909:41;3915:10;3927;3939:6;3909:41;;;;;;;;;;;;:5;:41::i;:::-;3966:24;;29489:25:18;;;3971:10:13;;3966:24;;29477:2:18;29462:18;3966:24:13;;;;;;;2662:1336;;;;;:::o;654:353:5:-;-1:-1:-1;;;;;819:23:5;;681:10:2;819:23:5;;:66;;-1:-1:-1;846:39:5;863:7;681:10:2;3499:168:4;:::i;846:39:5:-;797:157;;;;-1:-1:-1;;;797:157:5;;;;;;;:::i;:::-;967:32;978:7;987:3;992:6;967:10;:32::i;:::-;654:353;;;:::o;1650:94:15:-;1072:6;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;828:617:13:-:0;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;1048:17:13::1;1068:5;:28;1074:21;:11;885:14:3::0;;793:114;1074:21:13::1;1068:28:::0;;::::1;::::0;;::::1;::::0;;;;;;-1:-1:-1;1068:28:13;1107:29;;;1147:16:::1;::::0;::::1;:31:::0;;;1189:10:::1;::::0;::::1;:19:::0;;;1213:14:::1;::::0;::::1;:27:::0;;;1245:28:::1;::::0;::::1;:55:::0;;;1305:41;;1068:28;;-1:-1:-1;1305:41:13::1;::::0;:21:::1;::::0;::::1;::::0;:41;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;1351:11:13::1;::::0;::::1;:19:::0;;-1:-1:-1;;1375:28:13;;;1414:23:::1;:11;1004:19:3::0;;1022:1;1004:19;;;915:127;1414:23:13::1;1290:1:15;828:617:13::0;;;;;;:::o;5802:152::-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;5902:17:13::1;::::0;;;:5:::1;:17;::::0;;;;;;;:44;;::::1;::::0;:34:::1;::::0;;::::1;::::0;:44;::::1;::::0;::::1;:::i;5674:122::-:0;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;5756:17:13::1;::::0;;;:5:::1;:17;::::0;;;;;:23:::1;;:32:::0;5674:122::o;384:63:0:-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;431:8:0::1;:6;:8::i;730:87::-:0;769:13;802:7;795:14;;;;;:::i;3116:311:4:-;681:10:2;-1:-1:-1;;;;;3219:24:4;;;;3211:78;;;;-1:-1:-1;;;3211:78:4;;27157:2:18;3211:78:4;;;27139:21:18;27196:2;27176:18;;;27169:30;27235:34;27215:18;;;27208:62;-1:-1:-1;;;27286:18:18;;;27279:39;27335:19;;3211:78:4;27129:231:18;3211:78:4;681:10:2;3302:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;3302:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;3302:53:4;;;;;;;;;;3371:48;;17365:41:18;;;3302:42:4;;681:10:2;3371:48:4;;17338:18:18;3371:48:4;;;;;;;3116:311;;:::o;6315:147:13:-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;6433:21:13::1;::::0;6401::::1;::::0;-1:-1:-1;;;;;6433:12:13;::::1;::::0;:21;::::1;;;::::0;6401;;6383:15:::1;6433:21:::0;6383:15;6433:21;6401;6433:12;:21;::::1;;;;;;;;;;;;;::::0;::::1;;;;2113:543:::0;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;1143:7:16;;;;2226:9:13::1;2211:58;;;;-1:-1:-1::0;;;2211:58:13::1;;;;;;;:::i;:::-;2293:17;::::0;;;:5:::1;:17;::::0;;;;:29:::1;;::::0;2280:80:::1;;;;-1:-1:-1::0;;;2280:80:13::1;;;;;;;:::i;:::-;2423:17;::::0;;;:5:::1;:17;::::0;;;;:29:::1;::::0;::::1;::::0;2378::::1;::::0;;::::1;::::0;:41:::1;::::0;2412:6;2378:33:::1;:41::i;:::-;:74;;2365:127;;;;-1:-1:-1::0;;;2365:127:13::1;;;;;;;:::i;:::-;2529:17;::::0;;;:5:::1;:17;::::0;;;;:29:::1;;::::0;:41:::1;::::0;2563:6;2529:33:::1;:41::i;:::-;2497:5;:17;2503:10;2497:17;;;;;;;;;;;:29;;:73;;;;2581:34;2587:3;2592:10;2604:6;2581:34;;;;;;;;;;;::::0;:5:::1;:34::i;:::-;2636:3;-1:-1:-1::0;;;;;2631:17:13::1;;2641:6;2631:17;;;;29489:25:18::0;;29477:2;29462:18;;29444:76;2631:17:13::1;;;;;;;;2113:543:::0;;;:::o;5110:127::-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;5195:17:13::1;::::0;;;:5:::1;:17;::::0;;;;;:24:::1;;:34:::0;;-1:-1:-1;;5195:34:13::1;::::0;::::1;;::::0;;;::::1;::::0;;5110:127::o;365:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4004:1100::-;1143:7:16;;;;4094:9:13;4079:58;;;;-1:-1:-1;;;4079:58:13;;;;;;;:::i;:::-;4161:17;;;;:5;:17;;;;;:29;;;4148:80;;;;-1:-1:-1;;;4148:80:13;;;;;;;:::i;:::-;4246:17;;;;:5;:17;;;;;:24;;;;;4233:69;;;;-1:-1:-1;;;4233:69:13;;23309:2:18;4233:69:13;;;23291:21:18;23348:2;23328:18;;;23321:30;-1:-1:-1;;;23367:18:18;;;23360:48;23425:18;;4233:69:13;23281:168:18;4233:69:13;4350:17;;;;:5;:17;;;;;:23;;;4339:35;;:6;;:10;:35::i;:::-;4326:9;:48;;4313:96;;;;-1:-1:-1;;;4313:96:13;;29195:2:18;4313:96:13;;;29177:21:18;29234:2;29214:18;;;29207:30;-1:-1:-1;;;29253:18:18;;;29246:51;29314:18;;4313:96:13;29167:171:18;4313:96:13;4472:17;;;;:5;:17;;;;;:29;;;;4427;;;;;:41;;4461:6;4427:33;:41::i;:::-;:74;;4414:127;;;;-1:-1:-1;;;4414:127:13;;;;;;;:::i;:::-;4620:17;;;;:5;:17;;;;;;;;:27;;;;4593:10;4565:39;;:27;;;;:39;;;;;;;:51;;4609:6;4565:43;:51::i;:::-;:82;;4552:142;;;;-1:-1:-1;;;4552:142:13;;;;;;;:::i;:::-;4722:17;;;;:5;:17;;;;;:41;;;4712:51;;;4699:115;;;;-1:-1:-1;;;4699:115:13;;;;;;;:::i;:::-;4871:17;;;;:5;:17;;;;;;;;4899:10;4871:39;;:27;;:39;;;;;;:51;;4915:6;4871:43;:51::i;:::-;4829:17;;;;:5;:17;;;;;;;;4857:10;4829:39;;:27;;;:39;;;;;:93;;;;4959:17;;;;;;:29;;;:41;;4993:6;4959:33;:41::i;:::-;4927:5;:17;4933:10;4927:17;;;;;;;;;;;:29;;:73;;;;5015:41;5021:10;5033;5045:6;5015:41;;;;;;;;;;;;:5;:41::i;:::-;5072:24;;29489:25:18;;;5077:10:13;;5072:24;;29477:2:18;29462:18;5072:24:13;;;;;;;4004:1100;;:::o;5960:194::-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;6078:17:13::1;::::0;;;:5:::1;:17;::::0;;;;;:41:::1;;:68:::0;5960:194::o;5526:142::-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;5618:17:13::1;::::0;;;:5:::1;:17;::::0;;;;;:42;5526:142::o;3739:401:4:-;-1:-1:-1;;;;;3947:20:4;;681:10:2;3947:20:4;;:60;;-1:-1:-1;3971:36:4;3988:4;681:10:2;3499:168:4;:::i;3971:36::-;3925:151;;;;-1:-1:-1;;;3925:151:4;;;;;;;:::i;:::-;4087:45;4105:4;4111:2;4115;4119:6;4127:4;4087:17;:45::i;1899:192:15:-;1072:6;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:15;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:15;;20979:2:18;1980:73:15::1;::::0;::::1;20961:21:18::0;21018:2;20998:18;;;20991:30;21057:34;21037:18;;;21030:62;-1:-1:-1;;;21108:18:18;;;21101:36;21154:19;;1980:73:15::1;20951:228:18::0;1980:73:15::1;2064:19;2074:8;2064:9;:19::i;325:321:5:-:0;-1:-1:-1;;;;;465:23:5;;681:10:2;465:23:5;;:66;;-1:-1:-1;492:39:5;509:7;681:10:2;3499:168:4;:::i;492:39:5:-;443:157;;;;-1:-1:-1;;;443:157:5;;;;;;;:::i;:::-;613:25;619:7;628:2;632:5;613;:25::i;6160:146:13:-;1072:6:15;;-1:-1:-1;;;;;1072:6:15;681:10:2;1219:23:15;1211:68;;;;-1:-1:-1;;;1211:68:15;;;;;;;:::i;:::-;6254:17:13::1;::::0;;;:5:::1;:17;::::0;;;;;:29:::1;;:44:::0;6160:146::o;8219:88:4:-;8286:13;;;;:4;;:13;;;;;:::i;:::-;;8219:88;:::o;1866:105::-;1926:13;1959:4;1952:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1866:105;;;:::o;6301:1074::-;6528:7;:14;6514:3;:10;:28;6506:81;;;;-1:-1:-1;;;6506:81:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;6606:16:4;;6598:66;;;;-1:-1:-1;;;6598:66:4;;;;;;;:::i;:::-;681:10:2;6721:60:4;681:10:2;6752:4:4;6758:2;6762:3;6767:7;6776:4;6721:20;:60::i;:::-;6799:9;6794:421;6818:3;:10;6814:1;:14;6794:421;;;6850:10;6863:3;6867:1;6863:6;;;;;;-1:-1:-1;;;6863:6:4;;;;;;;;;;;;;;;6850:19;;6884:14;6901:7;6909:1;6901:10;;;;;;-1:-1:-1;;;6901:10:4;;;;;;;;;;;;;;;;;;;;6928:19;6950:13;;;;;;;;;;-1:-1:-1;;;;;6950:19:4;;;;;;;;;;;;6901:10;;-1:-1:-1;6992:21:4;;;;6984:76;;;;-1:-1:-1;;;6984:76:4;;;;;;;:::i;:::-;7104:9;:13;;;;;;;;;;;-1:-1:-1;;;;;7104:19:4;;;;;;;;;;7126:20;;;7104:42;;7176:17;;;;;;;:27;;7126:20;;7104:9;7176:27;;7126:20;;7176:27;:::i;:::-;;;;;;;;6794:421;;;6830:3;;;;:::i;:::-;;;6794:421;;;;7262:2;-1:-1:-1;;;;;7232:47:4;7256:4;-1:-1:-1;;;;;7232:47:4;7246:8;-1:-1:-1;;;;;7232:47:4;;7266:3;7271:7;7232:47;;;;;;;:::i;:::-;;;;;;;;7292:75;7328:8;7338:4;7344:2;7348:3;7353:7;7362:4;7292:35;:75::i;:::-;6301:1074;;;;;;:::o;2131:120:16:-;1143:7;;;;1667:41;;;;-1:-1:-1;;;1667:41:16;;19863:2:18;1667:41:16;;;19845:21:18;19902:2;19882:18;;;19875:30;-1:-1:-1;;;19921:18:18;;;19914:50;19981:18;;1667:41:16;19835:170:18;1667:41:16;2190:7:::1;:15:::0;;-1:-1:-1;;2190:15:16::1;::::0;;2221:22:::1;681:10:2::0;2230:12:16::1;2221:22;::::0;-1:-1:-1;;;;;15049:32:18;;;15031:51;;15019:2;15004:18;2221:22:16::1;;;;;;;2131:120::o:0;3501:98:17:-;3559:7;3586:5;3590:1;3586;:5;:::i;:::-;3579:12;3501:98;-1:-1:-1;;;3501:98:17:o;2763:::-;2821:7;2848:5;2852:1;2848;:5;:::i;797:830:14:-;922:4;962;922;979:525;1003:5;:12;999:1;:16;979:525;;;1037:20;1060:5;1066:1;1060:8;;;;;;-1:-1:-1;;;1060:8:14;;;;;;;;;;;;;;;1037:31;;1105:12;1089;:28;1085:408;;1242:44;;;;;;13446:19:18;;;13481:12;;;13474:28;;;13518:12;;1242:44:14;;;;;;;;;;;;1232:55;;;;;;1217:70;;1085:408;;;1432:44;;;;;;13446:19:18;;;13481:12;;;13474:28;;;13518:12;;1432:44:14;;;;;;;;;;;;1422:55;;;;;;1407:70;;1085:408;-1:-1:-1;1017:3:14;;;;:::i;:::-;;;;979:525;;;-1:-1:-1;1599:20:14;;;;797:830;-1:-1:-1;;;797:830:14:o;835:229:0:-;1018:38;1030:7;1039:2;1043:6;1051:4;1018:11;:38::i;:::-;835:229;;;;:::o;1534:227::-;1714:39;1731:7;1740:3;1745:7;1714:16;:39::i;2099:173:15:-;2174:6;;;-1:-1:-1;;;;;2191:17:15;;;-1:-1:-1;;;;;;2191:17:15;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2099:173;;:::o;1872:118:16:-;1143:7;;;;1397:9;1389:38;;;;-1:-1:-1;;;1389:38:16;;23656:2:18;1389:38:16;;;23638:21:18;23695:2;23675:18;;;23668:30;-1:-1:-1;;;23714:18:18;;;23707:46;23770:18;;1389:38:16;23628:166:18;1389:38:16;1932:7:::1;:14:::0;;-1:-1:-1;;1932:14:16::1;1942:4;1932:14;::::0;;1962:20:::1;1969:12;681:10:2::0;;601:98;5123:820:4;-1:-1:-1;;;;;5311:16:4;;5303:66;;;;-1:-1:-1;;;5303:66:4;;;;;;;:::i;:::-;681:10:2;5426:96:4;681:10:2;5457:4:4;5463:2;5467:21;5485:2;5467:17;:21::i;:::-;5490:25;5508:6;5490:17;:25::i;:::-;5517:4;5426:20;:96::i;:::-;5535:19;5557:13;;;;;;;;;;;-1:-1:-1;;;;;5557:19:4;;;;;;;;;;5595:21;;;;5587:76;;;;-1:-1:-1;;;5587:76:4;;;;;;;:::i;:::-;5699:9;:13;;;;;;;;;;;-1:-1:-1;;;;;5699:19:4;;;;;;;;;;5721:20;;;5699:42;;5763:17;;;;;;;:27;;5721:20;;5699:9;5763:27;;5721:20;;5763:27;:::i;:::-;;;;-1:-1:-1;;5808:46:4;;;29699:25:18;;;29755:2;29740:18;;29733:34;;;-1:-1:-1;;;;;5808:46:4;;;;;;;;;;;;;;29672:18:18;5808:46:4;;;;;;;5867:68;5898:8;5908:4;5914:2;5918;5922:6;5930:4;5867:30;:68::i;1331:195:0:-;1486:32;1498:7;1507:2;1511:6;1486:11;:32::i;1771:339::-;2036:66;2063:8;2073:4;2079:2;2083:3;2088:7;2097:4;2036:26;:66::i;14394:817:4:-;-1:-1:-1;;;;;14634:13:4;;1066:20:1;1114:8;14630:574:4;;14670:79;;-1:-1:-1;;;14670:79:4;;-1:-1:-1;;;;;14670:43:4;;;;;:79;;14714:8;;14724:4;;14730:3;;14735:7;;14744:4;;14670:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14670:79:4;;;;;;;;-1:-1:-1;;14670:79:4;;;;;;;;;;;;:::i;:::-;;;14666:527;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;15066:6;15059:14;;-1:-1:-1;;;15059:14:4;;;;;;;;:::i;14666:527::-;;;15115:62;;-1:-1:-1;;;15115:62:4;;18682:2:18;15115:62:4;;;18664:21:18;18721:2;18701:18;;;18694:30;18760:34;18740:18;;;18733:62;-1:-1:-1;;;18811:18:18;;;18804:50;18871:19;;15115:62:4;18654:242:18;14666:527:4;-1:-1:-1;;;;;;14831:64:4;;-1:-1:-1;;;14831:64:4;14827:163;;14920:50;;-1:-1:-1;;;14920:50:4;;;;;;;:::i;1016:242:7:-;1175:38;1187:7;1196:2;1200:6;1208:4;1175:11;:38::i;:::-;1224:16;;;;:12;:16;;;;;:26;;1244:6;;1224:16;:26;;1244:6;;1224:26;:::i;:::-;;;;-1:-1:-1;;;;;;1016:242:7:o;1995:315::-;2151:39;2168:7;2177:3;2182:7;2151:16;:39::i;:::-;2206:9;2201:102;2225:3;:10;2221:1;:14;2201:102;;;2281:7;2289:1;2281:10;;;;;;-1:-1:-1;;;2281:10:7;;;;;;;;;;;;;;;2257:12;:20;2270:3;2274:1;2270:6;;;;;;-1:-1:-1;;;2270:6:7;;;;;;;;;;;;;;;2257:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;2237:3:7;;-1:-1:-1;2237:3:7;;:::i;:::-;;;2201:102;;15219:198:4;15339:16;;;15353:1;15339:16;;;;;;;;;15285;;15314:22;;15339:16;;;;;;;;;;;;-1:-1:-1;15339:16:4;15314:41;;15377:7;15366:5;15372:1;15366:8;;;;;;-1:-1:-1;;;15366:8:4;;;;;;;;;;;;;;;;;;:18;15404:5;15219:198;-1:-1:-1;;15219:198:4:o;13638:748::-;-1:-1:-1;;;;;13853:13:4;;1066:20:1;1114:8;13849:530:4;;13889:72;;-1:-1:-1;;;13889:72:4;;-1:-1:-1;;;;;13889:38:4;;;;;:72;;13928:8;;13938:4;;13944:2;;13948:6;;13956:4;;13889:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13889:72:4;;;;;;;;-1:-1:-1;;13889:72:4;;;;;;;;;;;;:::i;:::-;;;13885:483;;;;:::i;:::-;-1:-1:-1;;;;;;14011:59:4;;-1:-1:-1;;;14011:59:4;14007:158;;14095:50;;-1:-1:-1;;;14095:50:4;;;;;;;:::i;1722:208:7:-;1853:32;1865:7;1874:2;1878:6;1853:11;:32::i;:::-;1896:16;;;;:12;:16;;;;;:26;;1916:6;;1896:16;:26;;1916:6;;1896:26;:::i;:::-;;;;-1:-1:-1;;;;;1722:208:7:o;636:392:6:-;1143:7:16;;;;962:9:6;954:66;;;;-1:-1:-1;;;954:66:6;;21791:2:18;954:66:6;;;21773:21:18;21830:2;21810:18;;;21803:30;21869:34;21849:18;;;21842:62;-1:-1:-1;;;21920:18:18;;;21913:42;21972:19;;954:66:6;21763:234:18;8708:599:4;-1:-1:-1;;;;;8866:21:4;;8858:67;;;;-1:-1:-1;;;8858:67:4;;28793:2:18;8858:67:4;;;28775:21:18;28832:2;28812:18;;;28805:30;28871:34;28851:18;;;28844:62;-1:-1:-1;;;28922:18:18;;;28915:31;28963:19;;8858:67:4;28765:223:18;8858:67:4;681:10:2;8982:107:4;681:10:2;8938:16:4;9025:7;9034:21;9052:2;9034:17;:21::i;8982:107::-;9102:9;:13;;;;;;;;;;;-1:-1:-1;;;;;9102:22:4;;;;;;;;;:32;;9128:6;;9102:9;:32;;9128:6;;9102:32;:::i;:::-;;;;-1:-1:-1;;9150:57:4;;;29699:25:18;;;29755:2;29740:18;;29733:34;;;-1:-1:-1;;;;;9150:57:4;;;;9183:1;;9150:57;;;;;;29672:18:18;9150:57:4;;;;;;;9220:79;9251:8;9269:1;9273:7;9282:2;9286:6;9294:4;9220:30;:79::i;11535:918::-;-1:-1:-1;;;;;11690:21:4;;11682:69;;;;-1:-1:-1;;;11682:69:4;;;;;;;:::i;:::-;11784:7;:14;11770:3;:10;:28;11762:81;;;;-1:-1:-1;;;11762:81:4;;;;;;;:::i;:::-;11856:16;681:10:2;11856:31:4;;11900:69;11921:8;11931:7;11948:1;11952:3;11957:7;11900:69;;;;;;;;;;;;:20;:69::i;:::-;11987:9;11982:388;12006:3;:10;12002:1;:14;11982:388;;;12038:10;12051:3;12055:1;12051:6;;;;;;-1:-1:-1;;;12051:6:4;;;;;;;;;;;;;;;12038:19;;12072:14;12089:7;12097:1;12089:10;;;;;;-1:-1:-1;;;12089:10:4;;;;;;;;;;;;;;;;;;;;12116:22;12141:13;;;;;;;;;;-1:-1:-1;;;;;12141:22:4;;;;;;;;;;;;12089:10;;-1:-1:-1;12186:24:4;;;;12178:73;;;;-1:-1:-1;;;12178:73:4;;;;;;;:::i;:::-;12295:9;:13;;;;;;;;;;;-1:-1:-1;;;;;12295:22:4;;;;;;;;;;12320:23;;12295:48;;12018:3;;;;:::i;:::-;;;;11982:388;;;;12428:1;-1:-1:-1;;;;;12387:58:4;12411:7;-1:-1:-1;;;;;12387:58:4;12401:8;-1:-1:-1;;;;;12387:58:4;;12432:3;12437:7;12387:58;;;;;;;:::i;:::-;;;;;;;;11535:918;;;;:::o;10657:675::-;-1:-1:-1;;;;;10787:21:4;;10779:69;;;;-1:-1:-1;;;10779:69:4;;;;;;;:::i;:::-;681:10:2;10905:105:4;681:10:2;10936:7:4;10861:16;10957:21;10975:2;10957:17;:21::i;:::-;10980:25;10998:6;10980:17;:25::i;:::-;10905:105;;;;;;;;;;;;:20;:105::i;:::-;11023:22;11048:13;;;;;;;;;;;-1:-1:-1;;;;;11048:22:4;;;;;;;;;;11089:24;;;;11081:73;;;;-1:-1:-1;;;11081:73:4;;;;;;;:::i;:::-;11190:9;:13;;;;;;;;;;;-1:-1:-1;;;;;11190:22:4;;;;;;;;;;;;11215:23;;;11190:48;;11267:57;;29699:25:18;;;29740:18;;;29733:34;;;11190:22:4;;11267:57;;;;;;29672:18:18;11267:57:4;;;;;;;10657:675;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:755:18;68:5;121:3;114:4;106:6;102:17;98:27;88:2;;143:5;136;129:20;88:2;183:6;170:20;209:4;232:43;272:2;232:43;:::i;:::-;304:2;298:9;316:31;344:2;336:6;316:31;:::i;:::-;382:18;;;416:15;;;;-1:-1:-1;451:15:18;;;501:1;497:10;;;485:23;;481:32;;478:41;-1:-1:-1;475:2:18;;;536:5;529;522:20;475:2;562:5;576:163;590:2;587:1;584:9;576:163;;;647:17;;635:30;;685:12;;;;717;;;;608:1;601:9;576:163;;;-1:-1:-1;757:6:18;;78:691;-1:-1:-1;;;;;;;78:691:18:o;774:160::-;839:20;;895:13;;888:21;878:32;;868:2;;924:1;921;914:12;868:2;820:114;;;:::o;939:575::-;981:5;1034:3;1027:4;1019:6;1015:17;1011:27;1001:2;;1056:5;1049;1042:20;1001:2;1096:6;1083:20;-1:-1:-1;;;;;1118:2:18;1115:26;1112:2;;;1144:18;;:::i;:::-;1193:2;1187:9;1205:67;1260:2;1241:13;;-1:-1:-1;;1237:27:18;1266:4;1233:38;1187:9;1205:67;:::i;:::-;1296:2;1288:6;1281:18;1342:3;1335:4;1330:2;1322:6;1318:15;1314:26;1311:35;1308:2;;;1363:5;1356;1349:20;1308:2;1431;1424:4;1416:6;1412:17;1405:4;1397:6;1393:17;1380:54;1454:15;;;1471:4;1450:26;1443:41;;;;1458:6;991:523;-1:-1:-1;;991:523:18:o;1519:257::-;1578:6;1631:2;1619:9;1610:7;1606:23;1602:32;1599:2;;;1652:6;1644;1637:22;1599:2;1696:9;1683:23;1715:31;1740:5;1715:31;:::i;2051:398::-;2119:6;2127;2180:2;2168:9;2159:7;2155:23;2151:32;2148:2;;;2201:6;2193;2186:22;2148:2;2245:9;2232:23;2264:31;2289:5;2264:31;:::i;:::-;2314:5;-1:-1:-1;2371:2:18;2356:18;;2343:32;2384:33;2343:32;2384:33;:::i;:::-;2436:7;2426:17;;;2138:311;;;;;:::o;2454:1111::-;2608:6;2616;2624;2632;2640;2693:3;2681:9;2672:7;2668:23;2664:33;2661:2;;;2715:6;2707;2700:22;2661:2;2759:9;2746:23;2778:31;2803:5;2778:31;:::i;:::-;2828:5;-1:-1:-1;2885:2:18;2870:18;;2857:32;2898:33;2857:32;2898:33;:::i;:::-;2950:7;-1:-1:-1;3008:2:18;2993:18;;2980:32;-1:-1:-1;;;;;3061:14:18;;;3058:2;;;3093:6;3085;3078:22;3058:2;3121:61;3174:7;3165:6;3154:9;3150:22;3121:61;:::i;:::-;3111:71;;3235:2;3224:9;3220:18;3207:32;3191:48;;3264:2;3254:8;3251:16;3248:2;;;3285:6;3277;3270:22;3248:2;3313:63;3368:7;3357:8;3346:9;3342:24;3313:63;:::i;:::-;3303:73;;3429:3;3418:9;3414:19;3401:33;3385:49;;3459:2;3449:8;3446:16;3443:2;;;3480:6;3472;3465:22;3443:2;;3508:51;3551:7;3540:8;3529:9;3525:24;3508:51;:::i;:::-;3498:61;;;2651:914;;;;;;;;:::o;3570:754::-;3674:6;3682;3690;3698;3706;3759:3;3747:9;3738:7;3734:23;3730:33;3727:2;;;3781:6;3773;3766:22;3727:2;3825:9;3812:23;3844:31;3869:5;3844:31;:::i;:::-;3894:5;-1:-1:-1;3951:2:18;3936:18;;3923:32;3964:33;3923:32;3964:33;:::i;:::-;4016:7;-1:-1:-1;4070:2:18;4055:18;;4042:32;;-1:-1:-1;4121:2:18;4106:18;;4093:32;;-1:-1:-1;4176:3:18;4161:19;;4148:33;-1:-1:-1;;;;;4193:30:18;;4190:2;;;4241:6;4233;4226:22;4190:2;4269:49;4310:7;4301:6;4290:9;4286:22;4269:49;:::i;4329:760::-;4456:6;4464;4472;4525:2;4513:9;4504:7;4500:23;4496:32;4493:2;;;4546:6;4538;4531:22;4493:2;4590:9;4577:23;4609:31;4634:5;4609:31;:::i;:::-;4659:5;-1:-1:-1;4715:2:18;4700:18;;4687:32;-1:-1:-1;;;;;4768:14:18;;;4765:2;;;4800:6;4792;4785:22;4765:2;4828:61;4881:7;4872:6;4861:9;4857:22;4828:61;:::i;:::-;4818:71;;4942:2;4931:9;4927:18;4914:32;4898:48;;4971:2;4961:8;4958:16;4955:2;;;4992:6;4984;4977:22;4955:2;;5020:63;5075:7;5064:8;5053:9;5049:24;5020:63;:::i;:::-;5010:73;;;4483:606;;;;;:::o;5094:325::-;5159:6;5167;5220:2;5208:9;5199:7;5195:23;5191:32;5188:2;;;5241:6;5233;5226:22;5188:2;5285:9;5272:23;5304:31;5329:5;5304:31;:::i;:::-;5354:5;-1:-1:-1;5378:35:18;5409:2;5394:18;;5378:35;:::i;:::-;5368:45;;5178:241;;;;;:::o;5424:325::-;5492:6;5500;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5574:6;5566;5559:22;5521:2;5618:9;5605:23;5637:31;5662:5;5637:31;:::i;:::-;5687:5;5739:2;5724:18;;;;5711:32;;-1:-1:-1;;;5511:238:18:o;5754:393::-;5831:6;5839;5847;5900:2;5888:9;5879:7;5875:23;5871:32;5868:2;;;5921:6;5913;5906:22;5868:2;5965:9;5952:23;5984:31;6009:5;5984:31;:::i;:::-;6034:5;6086:2;6071:18;;6058:32;;-1:-1:-1;6137:2:18;6122:18;;;6109:32;;5858:289;-1:-1:-1;;;5858:289:18:o;6152:1343::-;6270:6;6278;6331:2;6319:9;6310:7;6306:23;6302:32;6299:2;;;6352:6;6344;6337:22;6299:2;6397:9;6384:23;-1:-1:-1;;;;;6467:2:18;6459:6;6456:14;6453:2;;;6488:6;6480;6473:22;6453:2;6531:6;6520:9;6516:22;6506:32;;6576:7;6569:4;6565:2;6561:13;6557:27;6547:2;;6603:6;6595;6588:22;6547:2;6644;6631:16;6666:4;6689:43;6729:2;6689:43;:::i;:::-;6761:2;6755:9;6773:31;6801:2;6793:6;6773:31;:::i;:::-;6839:18;;;6873:15;;;;-1:-1:-1;6908:11:18;;;6950:1;6946:10;;;6938:19;;6934:28;;6931:41;-1:-1:-1;6928:2:18;;;6990:6;6982;6975:22;6928:2;7017:6;7008:15;;7032:238;7046:2;7043:1;7040:9;7032:238;;;7117:3;7104:17;7134:31;7159:5;7134:31;:::i;:::-;7178:18;;7064:1;7057:9;;;;;7216:12;;;;7248;;7032:238;;;-1:-1:-1;7289:6:18;-1:-1:-1;;7333:18:18;;7320:32;;-1:-1:-1;;7364:16:18;;;7361:2;;;7398:6;7390;7383:22;7361:2;;7426:63;7481:7;7470:8;7459:9;7455:24;7426:63;:::i;:::-;7416:73;;;6289:1206;;;;;:::o;7500:684::-;7614:6;7622;7630;7638;7646;7654;7707:3;7695:9;7686:7;7682:23;7678:33;7675:2;;;7729:6;7721;7714:22;7675:2;7770:9;7757:23;7747:33;;7827:2;7816:9;7812:18;7799:32;7789:42;;7878:2;7867:9;7863:18;7850:32;7840:42;;7929:2;7918:9;7914:18;7901:32;7891:42;;7980:3;7969:9;7965:19;7952:33;7942:43;;8036:3;8025:9;8021:19;8008:33;-1:-1:-1;;;;;8056:6:18;8053:30;8050:2;;;8101:6;8093;8086:22;8050:2;8129:49;8170:7;8161:6;8150:9;8146:22;8129:49;:::i;:::-;8119:59;;;7665:519;;;;;;;;:::o;8189:753::-;8312:6;8320;8328;8336;8344;8352;8360;8413:3;8401:9;8392:7;8388:23;8384:33;8381:2;;;8435:6;8427;8420:22;8381:2;8476:9;8463:23;8453:33;;8533:2;8522:9;8518:18;8505:32;8495:42;;8584:2;8573:9;8569:18;8556:32;8546:42;;8635:2;8624:9;8620:18;8607:32;8597:42;;8686:3;8675:9;8671:19;8658:33;8648:43;;8742:3;8731:9;8727:19;8714:33;-1:-1:-1;;;;;8762:6:18;8759:30;8756:2;;;8807:6;8799;8792:22;8756:2;8835:49;8876:7;8867:6;8856:9;8852:22;8835:49;:::i;:::-;8825:59;;;8931:3;8920:9;8916:19;8903:33;8893:43;;8371:571;;;;;;;;;;:::o;8947:255::-;9005:6;9058:2;9046:9;9037:7;9033:23;9029:32;9026:2;;;9079:6;9071;9064:22;9026:2;9123:9;9110:23;9142:30;9166:5;9142:30;:::i;9207:259::-;9276:6;9329:2;9317:9;9308:7;9304:23;9300:32;9297:2;;;9350:6;9342;9335:22;9297:2;9387:9;9381:16;9406:30;9430:5;9406:30;:::i;9471:341::-;9540:6;9593:2;9581:9;9572:7;9568:23;9564:32;9561:2;;;9614:6;9606;9599:22;9561:2;9659:9;9646:23;-1:-1:-1;;;;;9684:6:18;9681:30;9678:2;;;9729:6;9721;9714:22;9678:2;9757:49;9798:7;9789:6;9778:9;9774:22;9757:49;:::i;:::-;9747:59;9551:261;-1:-1:-1;;;;9551:261:18:o;9817:190::-;9876:6;9929:2;9917:9;9908:7;9904:23;9900:32;9897:2;;;9950:6;9942;9935:22;9897:2;-1:-1:-1;9978:23:18;;9887:120;-1:-1:-1;9887:120:18:o;10012:325::-;10080:6;10088;10141:2;10129:9;10120:7;10116:23;10112:32;10109:2;;;10162:6;10154;10147:22;10109:2;10203:9;10190:23;10180:33;;10263:2;10252:9;10248:18;10235:32;10276:31;10301:5;10276:31;:::i;10342:258::-;10407:6;10415;10468:2;10456:9;10447:7;10443:23;10439:32;10436:2;;;10489:6;10481;10474:22;10436:2;10530:9;10517:23;10507:33;;10559:35;10590:2;10579:9;10575:18;10559:35;:::i;10605:258::-;10673:6;10681;10734:2;10722:9;10713:7;10709:23;10705:32;10702:2;;;10755:6;10747;10740:22;10702:2;-1:-1:-1;;10783:23:18;;;10853:2;10838:18;;;10825:32;;-1:-1:-1;10692:171:18:o;10868:409::-;10946:6;10954;11007:2;10995:9;10986:7;10982:23;10978:32;10975:2;;;11028:6;11020;11013:22;10975:2;11069:9;11056:23;11046:33;;11130:2;11119:9;11115:18;11102:32;-1:-1:-1;;;;;11149:6:18;11146:30;11143:2;;;11194:6;11186;11179:22;11143:2;11222:49;11263:7;11254:6;11243:9;11239:22;11222:49;:::i;11545:801::-;11649:6;11657;11665;11673;11726:2;11714:9;11705:7;11701:23;11697:32;11694:2;;;11747:6;11739;11732:22;11694:2;11788:9;11775:23;11765:33;;11845:2;11834:9;11830:18;11817:32;11807:42;;11900:2;11889:9;11885:18;11872:32;-1:-1:-1;;;;;11964:2:18;11956:6;11953:14;11950:2;;;11985:6;11977;11970:22;11950:2;12028:6;12017:9;12013:22;12003:32;;12073:7;12066:4;12062:2;12058:13;12054:27;12044:2;;12100:6;12092;12085:22;12044:2;12145;12132:16;12171:2;12163:6;12160:14;12157:2;;;12192:6;12184;12177:22;12157:2;12250:7;12245:2;12235:6;12232:1;12228:14;12224:2;12220:23;12216:32;12213:45;12210:2;;;12276:6;12268;12261:22;12210:2;11684:662;;;;-1:-1:-1;;12312:2:18;12304:11;;-1:-1:-1;;;11684:662:18:o;12351:437::-;12404:3;12442:5;12436:12;12469:6;12464:3;12457:19;12495:4;12524:2;12519:3;12515:12;12508:19;;12561:2;12554:5;12550:14;12582:3;12594:169;12608:6;12605:1;12602:13;12594:169;;;12669:13;;12657:26;;12703:12;;;;12738:15;;;;12630:1;12623:9;12594:169;;;-1:-1:-1;12779:3:18;;12412:376;-1:-1:-1;;;;;12412:376:18:o;12793:257::-;12834:3;12872:5;12866:12;12899:6;12894:3;12887:19;12915:63;12971:6;12964:4;12959:3;12955:14;12948:4;12941:5;12937:16;12915:63;:::i;:::-;13032:2;13011:15;-1:-1:-1;;13007:29:18;12998:39;;;;13039:4;12994:50;;12842:208;-1:-1:-1;;12842:208:18:o;13541:1339::-;13717:3;13755:6;13749:13;13781:4;13794:51;13838:6;13833:3;13828:2;13820:6;13816:15;13794:51;:::i;:::-;13932:13;;13867:16;;;;13903:3;;13992:1;14014:18;;;;14067;;;;14094:2;;14172:4;14162:8;14158:19;14146:31;;14094:2;14235;14225:8;14222:16;14202:18;14199:40;14196:2;;;-1:-1:-1;;;14262:33:18;;14318:4;14315:1;14308:15;14348:4;14269:3;14336:17;14196:2;14379:18;14406:110;;;;14530:1;14525:330;;;;14372:483;;14406:110;-1:-1:-1;;14441:24:18;;14427:39;;14486:20;;;;-1:-1:-1;14406:110:18;;14525:330;30013:4;30032:17;;;30082:4;30066:21;;14620:3;14636:169;14650:8;14647:1;14644:15;14636:169;;;14732:14;;14717:13;;;14710:37;14775:16;;;;14667:10;;14636:169;;;14640:3;;14836:8;14829:5;14825:20;14818:27;;14372:483;-1:-1:-1;14871:3:18;;13725:1155;-1:-1:-1;;;;;;;;;;13725:1155:18:o;15093:826::-;-1:-1:-1;;;;;15490:15:18;;;15472:34;;15542:15;;15537:2;15522:18;;15515:43;15452:3;15589:2;15574:18;;15567:31;;;15415:4;;15621:57;;15658:19;;15650:6;15621:57;:::i;:::-;15726:9;15718:6;15714:22;15709:2;15698:9;15694:18;15687:50;15760:44;15797:6;15789;15760:44;:::i;:::-;15746:58;;15853:9;15845:6;15841:22;15835:3;15824:9;15820:19;15813:51;15881:32;15906:6;15898;15881:32;:::i;:::-;15873:40;15424:495;-1:-1:-1;;;;;;;;15424:495:18:o;15924:560::-;-1:-1:-1;;;;;16221:15:18;;;16203:34;;16273:15;;16268:2;16253:18;;16246:43;16320:2;16305:18;;16298:34;;;16363:2;16348:18;;16341:34;;;16183:3;16406;16391:19;;16384:32;;;16146:4;;16433:45;;16458:19;;16450:6;16433:45;:::i;:::-;16425:53;16155:329;-1:-1:-1;;;;;;;16155:329:18:o;16489:261::-;16668:2;16657:9;16650:21;16631:4;16688:56;16740:2;16729:9;16725:18;16717:6;16688:56;:::i;16755:465::-;17012:2;17001:9;16994:21;16975:4;17038:56;17090:2;17079:9;17075:18;17067:6;17038:56;:::i;:::-;17142:9;17134:6;17130:22;17125:2;17114:9;17110:18;17103:50;17170:44;17207:6;17199;17170:44;:::i;:::-;17162:52;16984:236;-1:-1:-1;;;;;16984:236:18:o;17417:834::-;17741:4;17770:3;17800:6;17789:9;17782:25;17843:6;17838:2;17827:9;17823:18;17816:34;17886:6;17881:2;17870:9;17866:18;17859:34;17929:6;17924:2;17913:9;17909:18;17902:34;17973:6;17967:3;17956:9;17952:19;17945:35;18017:6;18011:3;18000:9;17996:19;17989:35;18075:6;18068:14;18061:22;18055:3;18044:9;18040:19;18033:51;18135:6;18128:14;18121:22;18115:3;18104:9;18100:19;18093:51;18181:2;18175:3;18164:9;18160:19;18153:31;18201:44;18241:2;18230:9;18226:18;18218:6;18201:44;:::i;:::-;18193:52;17750:501;-1:-1:-1;;;;;;;;;;;;17750:501:18:o;18256:219::-;18405:2;18394:9;18387:21;18368:4;18425:44;18465:2;18454:9;18450:18;18442:6;18425:44;:::i;19252:404::-;19454:2;19436:21;;;19493:2;19473:18;;;19466:30;19532:34;19527:2;19512:18;;19505:62;-1:-1:-1;;;19598:2:18;19583:18;;19576:38;19646:3;19631:19;;19426:230::o;20010:350::-;20212:2;20194:21;;;20251:2;20231:18;;;20224:30;20290:28;20285:2;20270:18;;20263:56;20351:2;20336:18;;20184:176::o;21184:400::-;21386:2;21368:21;;;21425:2;21405:18;;;21398:30;21464:34;21459:2;21444:18;;21437:62;-1:-1:-1;;;21530:2:18;21515:18;;21508:34;21574:3;21559:19;;21358:226::o;22002:405::-;22204:2;22186:21;;;22243:2;22223:18;;;22216:30;22282:34;22277:2;22262:18;;22255:62;-1:-1:-1;;;22348:2:18;22333:18;;22326:39;22397:3;22382:19;;22176:231::o;22412:342::-;22614:2;22596:21;;;22653:2;22633:18;;;22626:30;-1:-1:-1;;;22687:2:18;22672:18;;22665:48;22745:2;22730:18;;22586:168::o;22759:343::-;22961:2;22943:21;;;23000:2;22980:18;;;22973:30;-1:-1:-1;;;23034:2:18;23019:18;;23012:49;23093:2;23078:18;;22933:169::o;24201:401::-;24403:2;24385:21;;;24442:2;24422:18;;;24415:30;24481:34;24476:2;24461:18;;24454:62;-1:-1:-1;;;24547:2:18;24532:18;;24525:35;24592:3;24577:19;;24375:227::o;25026:399::-;25228:2;25210:21;;;25267:2;25247:18;;;25240:30;25306:34;25301:2;25286:18;;25279:62;-1:-1:-1;;;25372:2:18;25357:18;;25350:33;25415:3;25400:19;;25200:225::o;25430:406::-;25632:2;25614:21;;;25671:2;25651:18;;;25644:30;25710:34;25705:2;25690:18;;25683:62;-1:-1:-1;;;25776:2:18;25761:18;;25754:40;25826:3;25811:19;;25604:232::o;25841:356::-;26043:2;26025:21;;;26062:18;;;26055:30;26121:34;26116:2;26101:18;;26094:62;26188:2;26173:18;;26015:182::o;26553:397::-;26755:2;26737:21;;;26794:2;26774:18;;;26767:30;26833:34;26828:2;26813:18;;26806:62;-1:-1:-1;;;26899:2:18;26884:18;;26877:31;26940:3;26925:19;;26727:223::o;27775:402::-;27977:2;27959:21;;;28016:2;27996:18;;;27989:30;28055:34;28050:2;28035:18;;28028:62;-1:-1:-1;;;28121:2:18;28106:18;;28099:36;28167:3;28152:19;;27949:228::o;28182:404::-;28384:2;28366:21;;;28423:2;28403:18;;;28396:30;28462:34;28457:2;28442:18;;28435:62;-1:-1:-1;;;28528:2:18;28513:18;;28506:38;28576:3;28561:19;;28356:230::o;29778:183::-;29838:4;-1:-1:-1;;;;;29863:6:18;29860:30;29857:2;;;29893:18;;:::i;:::-;-1:-1:-1;29938:1:18;29934:14;29950:4;29930:25;;29847:114::o;30098:128::-;30138:3;30169:1;30165:6;30162:1;30159:13;30156:2;;;30175:18;;:::i;:::-;-1:-1:-1;30211:9:18;;30146:80::o;30231:168::-;30271:7;30337:1;30333;30329:6;30325:14;30322:1;30319:21;30314:1;30307:9;30300:17;30296:45;30293:2;;;30344:18;;:::i;:::-;-1:-1:-1;30384:9:18;;30283:116::o;30404:125::-;30444:4;30472:1;30469;30466:8;30463:2;;;30477:18;;:::i;:::-;-1:-1:-1;30514:9:18;;30453:76::o;30534:258::-;30606:1;30616:113;30630:6;30627:1;30624:13;30616:113;;;30706:11;;;30700:18;30687:11;;;30680:39;30652:2;30645:10;30616:113;;;30747:6;30744:1;30741:13;30738:2;;;-1:-1:-1;;30782:1:18;30764:16;;30757:27;30587:205::o;30797:380::-;30876:1;30872:12;;;;30919;;;30940:2;;30994:4;30986:6;30982:17;30972:27;;30940:2;31047;31039:6;31036:14;31016:18;31013:38;31010:2;;;31093:10;31088:3;31084:20;31081:1;31074:31;31128:4;31125:1;31118:15;31156:4;31153:1;31146:15;31010:2;;30852:325;;;:::o;31182:249::-;31292:2;31273:13;;-1:-1:-1;;31269:27:18;31257:40;;-1:-1:-1;;;;;31312:34:18;;31348:22;;;31309:62;31306:2;;;31374:18;;:::i;:::-;31410:2;31403:22;-1:-1:-1;;31229:202:18:o;31436:135::-;31475:3;-1:-1:-1;;31496:17:18;;31493:2;;;31516:18;;:::i;:::-;-1:-1:-1;31563:1:18;31552:13;;31483:88::o;31576:127::-;31637:10;31632:3;31628:20;31625:1;31618:31;31668:4;31665:1;31658:15;31692:4;31689:1;31682:15;31708:127;31769:10;31764:3;31760:20;31757:1;31750:31;31800:4;31797:1;31790:15;31824:4;31821:1;31814:15;31840:185;31875:3;31917:1;31899:16;31896:23;31893:2;;;31967:1;31962:3;31957;31942:27;31998:10;31993:3;31989:20;31893:2;31883:142;:::o;32030:671::-;32069:3;32111:4;32093:16;32090:26;32087:2;;;32077:624;:::o;32087:2::-;32153;32147:9;-1:-1:-1;;32218:16:18;32214:25;;32211:1;32147:9;32190:50;32269:4;32263:11;32293:16;-1:-1:-1;;;;;32399:2:18;32392:4;32384:6;32380:17;32377:25;32372:2;32364:6;32361:14;32358:45;32355:2;;;32406:5;;;;;32077:624;:::o;32355:2::-;32443:6;32437:4;32433:17;32422:28;;32479:3;32473:10;32506:2;32498:6;32495:14;32492:2;;;32512:5;;;;;;32077:624;:::o;32492:2::-;32596;32577:16;32571:4;32567:27;32563:36;32556:4;32547:6;32542:3;32538:16;32534:27;32531:69;32528:2;;;32603:5;;;;;;32077:624;:::o;32528:2::-;32619:57;32670:4;32661:6;32653;32649:19;32645:30;32639:4;32619:57;:::i;:::-;-1:-1:-1;32692:3:18;;32077:624;-1:-1:-1;;;;;32077:624:18:o;32706:131::-;-1:-1:-1;;;;;32781:31:18;;32771:42;;32761:2;;32827:1;32824;32817:12;32842:131;-1:-1:-1;;;;;;32916:32:18;;32906:43;;32896:2;;32963:1;32960;32953:12

Swarm Source

ipfs://8983a8d6ea2b5a517bc5e0ec258d4f12d0f2839f9464afe025422efa08f1a86d
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.