ETH Price: $3,480.86 (+1.68%)
Gas: 13 Gwei

Token

Polymorphic Faces (FACES)
 

Overview

Max Total Supply

1,373 FACES

Holders

344

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FACES
0x9eb7577e522adb757a2da19e7a2daad132f16c8c
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:
PolymorphicFacesRoot

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 42 : PolymorphicFacesRoot.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;

import "./IPolymorphicFacesRoot.sol";
import "../base/PolymorphsV2/PolymorphRoot.sol";
import "../base/PolymorphicFacesWithGeneChanger.sol";

contract PolymorphicFacesRoot is
    PolymorphicFacesWithGeneChanger,
    IPolymorphicFacesRoot
{
    using PolymorphicFacesGeneGenerator for PolymorphicFacesGeneGenerator.Gene;

    struct Params {
        string name;
        string symbol;
        string baseURI;
        address payable _daoAddress;
        uint96 _royaltyFee;
        uint256 _baseGenomeChangePrice;
        uint256 _maxSupply;
        uint256 _randomizeGenomePrice;
        string _arweaveAssetsJSON;
        address _polymorphV2Address;
    }

    uint256 public maxSupply;

    PolymorphRoot public polymorphV2Contract;

    mapping(address => uint256) public numClaimed;

    event MaxSupplyChanged(uint256 newMaxSupply);
    event PolyV2AddressChanged(address newPolyV2Address);
    event DefaultRoyaltyChanged(address newReceiver, uint96 newDefaultRoyalty);

    constructor(Params memory params)
        PolymorphicFacesWithGeneChanger(
            params.name,
            params.symbol,
            params.baseURI,
            params._daoAddress,
            params._baseGenomeChangePrice,
            params._randomizeGenomePrice,
            params._arweaveAssetsJSON
        )
    {
        maxSupply = params._maxSupply;
        arweaveAssetsJSON = params._arweaveAssetsJSON;
        polymorphV2Contract = PolymorphRoot(
            payable(params._polymorphV2Address)
        );
        geneGenerator.random();
        _setDefaultRoyalty(params._daoAddress, params._royaltyFee);
    }

    function claim(uint256 amount) public nonReentrant {
        require(amount <= 20, "Can't claim more than 20 faces in one tx");
        require(_tokenId + amount <= maxSupply, "Total supply reached");

        for (uint256 i = 0; i < amount; i++) {
            require(
                polymorphV2Contract.burnCount(msg.sender) >
                    numClaimed[msg.sender],
                "User already claimed all allowed faces"
            );
            numClaimed[msg.sender]++;

            _tokenId++;

            _genes[_tokenId] = geneGenerator.random();

            _mint(_msgSender(), _tokenId);

            emit TokenMinted(_tokenId, _genes[_tokenId]);
            emit TokenMorphed(
                _tokenId,
                0,
                _genes[_tokenId],
                0,
                FacesEventType.MINT
            );
        }
    }

    function daoMint(uint256 _amount) external onlyDAO {
        require(_amount <= 25, "DAO can mint at most 25 faces per transaction");
        require(_tokenId + _amount <= maxSupply, "Total supply reached");
        for (uint256 i = 0; i < _amount; i++) {
            _tokenId++;
            _genes[_tokenId] = geneGenerator.random();
            _mint(_msgSender(), _tokenId);

            emit TokenMinted(_tokenId, _genes[_tokenId]);
            emit TokenMorphed(
                _tokenId,
                0,
                _genes[_tokenId],
                0,
                FacesEventType.MINT
            );
        }
    }

    function mint(address to) public override(ERC721PresetMinterPauserAutoId) {
        revert("Should not use this one");
    }

    function setDefaultRoyalty(address receiver, uint96 royaltyFee)
        external
        onlyDAO
    {
        _setDefaultRoyalty(receiver, royaltyFee);

        emit DefaultRoyaltyChanged(receiver, royaltyFee);
    }

    function setMaxSupply(uint256 _maxSupply) public virtual override onlyDAO {
        maxSupply = _maxSupply;

        emit MaxSupplyChanged(maxSupply);
    }

    function setPolyV2Address(address payable newPolyV2Address)
        external
        onlyDAO
    {
        polymorphV2Contract = PolymorphRoot(newPolyV2Address);

        emit PolyV2AddressChanged(newPolyV2Address);
    }
}

File 2 of 42 : IPolymorphicFacesRoot.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

interface IPolymorphicFacesRoot is IERC721 {

    function setMaxSupply(uint256 maxSupply) external;
}

File 3 of 42 : PolymorphRoot.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.14;

import "./IPolymorphRoot.sol";
import "../PolymorphsV1/Polymorph.sol";
import "../PolymorphsV1/PolymorphWithGeneChanger.sol";

contract PolymorphRoot is PolymorphWithGeneChanger, IPolymorphRoot {
    using PolymorphGeneGenerator for PolymorphGeneGenerator.Gene;

    struct Params {
        string name;
        string symbol;
        string baseURI;
        address payable _daoAddress;
        uint96 _royaltyFee;
        uint256 _baseGenomeChangePrice;
        uint256 _polymorphPrice;
        uint256 _maxSupply;
        uint256 _randomizeGenomePrice;
        uint256 _bulkBuyLimit;
        string _arweaveAssetsJSON;
        address _polymorphV1Address;
    }

    //uint256 public polymorphPrice;
    //uint256 public maxSupply;
    //uint256 public bulkBuyLimit;

    Polymorph public polymorphV1Contract;
    mapping(address => uint256) public burnCount;

    uint16 constant private STARTING_TOKEN_ID = 10000;

    //event PolymorphPriceChanged(uint256 newPolymorphPrice);
    //event MaxSupplyChanged(uint256 newMaxSupply);
    //event BulkBuyLimitChanged(uint256 newBulkBuyLimit);
    event DefaultRoyaltyChanged(address newReceiver, uint96 newDefaultRoyalty);

    constructor(Params memory params)
        PolymorphWithGeneChanger(
            params.name,
            params.symbol,
            params.baseURI,
            params._daoAddress,
            params._polymorphPrice,
            params._maxSupply,
            params._bulkBuyLimit,
            params._baseGenomeChangePrice,
            params._randomizeGenomePrice,
            params._arweaveAssetsJSON
        )
    {
        // polymorphPrice = params._polymorphPrice;
        // maxSupply = params._maxSupply;

        // bulkBuyLimit = params._bulkBuyLimit;

        polymorphV1Contract = Polymorph(params._polymorphV1Address);

        geneGenerator.random();

        _tokenId = _tokenId + STARTING_TOKEN_ID;

        _setDefaultRoyalty(params._daoAddress, params._royaltyFee);

    }

    function mint() public payable override nonReentrant {
        require(_tokenId < maxSupply, "Total supply reached");
        require(msg.value >= polymorphPrice, "Insufficient funds");

        _tokenId++;

        _genes[_tokenId] = geneGenerator.random();
        _mint(_msgSender(), _tokenId);

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

        emit TokenMinted(_tokenId, _genes[_tokenId]);
        emit TokenMorphed(
            _tokenId,
            0,
            _genes[_tokenId],
            polymorphPrice,
            PolymorphEventType.MINT
        );
    }

    function burnAndMintNewPolymorph(uint256[] calldata tokenIds) external nonReentrant {
        for(uint256 i = 0; i < tokenIds.length; i++) {
            uint256 currentIdToBurnAndMint = tokenIds[i];
            require(_msgSender() == polymorphV1Contract.ownerOf(currentIdToBurnAndMint));

            uint256 geneToTransfer = polymorphV1Contract.geneOf(currentIdToBurnAndMint);
            polymorphV1Contract.burn(currentIdToBurnAndMint);

            burnCount[_msgSender()]+=1;

            _genes[currentIdToBurnAndMint] = geneToTransfer;

            _mint(_msgSender(), currentIdToBurnAndMint);

            emit TokenMinted(currentIdToBurnAndMint, _genes[currentIdToBurnAndMint]);
            emit TokenBurnedAndMinted(currentIdToBurnAndMint, _genes[currentIdToBurnAndMint]);
        }
    }

    function bulkBuy(uint256 amount) public override(Polymorph,IPolymorphRoot) payable nonReentrant {
        require(
            amount <= bulkBuyLimit,
            "Cannot bulk buy more than the preset limit"
        );
        require(
            _tokenId + amount <= maxSupply,
            "Total supply reached"
        );
        require(msg.value >= polymorphPrice * amount, "Insufficient funds");

        for (uint256 i = 0; i < amount; i++) {
            _tokenId++;

            _genes[_tokenId] = geneGenerator.random();
            _mint(_msgSender(), _tokenId);

            emit TokenMinted(_tokenId, _genes[_tokenId]);
            emit TokenMorphed(
                _tokenId,
                0,
                _genes[_tokenId],
                polymorphPrice,
                PolymorphEventType.MINT
            );
        }

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

    // function mint(address to)
    //     public
    //     pure
    //     override
    // {
    //     revert("Should not use this one");
    // }

    function setPolymorphPrice(uint256 newPolymorphPrice)
        public
        virtual
        override
        onlyDAO
    {
        polymorphPrice = newPolymorphPrice;

        emit PolymorphPriceChanged(newPolymorphPrice);
    }

    function setMaxSupply(uint256 _maxSupply) public virtual override onlyDAO {
        maxSupply = _maxSupply;

        emit MaxSupplyChanged(maxSupply);
    }

    // function setBulkBuyLimit(uint256 _bulkBuyLimit)
    //     public
    //     virtual
    //     override
    //     onlyDAO
    // {
    //     bulkBuyLimit = _bulkBuyLimit;

    //     emit BulkBuyLimitChanged(_bulkBuyLimit);
    // }

    function setDefaultRoyalty(address receiver, uint96 royaltyFee)
        external
        onlyDAO
    {
        _setDefaultRoyalty(receiver, royaltyFee);

        emit DefaultRoyaltyChanged(receiver, royaltyFee);
    }

    receive() external payable {
        mint();
    }
}

File 4 of 42 : PolymorphicFacesWithGeneChanger.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;

import "@openzeppelin/contracts/utils/Address.sol";
import "../lib/PolymorphicFacesGeneGenerator.sol";
import "../modifiers/TunnelEnabled.sol";
import "./PolymorphicFaces.sol";
import "./IPolymorphicFacesWithGeneChanger.sol";

abstract contract PolymorphicFacesWithGeneChanger is
    IPolymorphicFacesWithGeneChanger,
    PolymorphicFaces,
    TunnelEnabled
{
    using PolymorphicFacesGeneGenerator for PolymorphicFacesGeneGenerator.Gene;
    using Address for address;

    uint256 constant private TOTAL_ATTRIBUTES = 38;

    mapping(uint256 => uint256) internal _genomeChanges;
    mapping(uint256 => bool) public isNotVirgin;
    uint256 public baseGenomeChangePrice;
    uint256 public randomizeGenomePrice;

    event BaseGenomeChangePriceChanged(uint256 newGenomeChange);
    event RandomizeGenomePriceChanged(uint256 newRandomizeGenomePriceChange);

    constructor(
        string memory name,
        string memory symbol,
        string memory baseURI,
        address payable _daoAddress,
        uint256 _baseGenomeChangePrice,
        uint256 _randomizeGenomePrice,
        string memory _arweaveAssetsJSON
    ) PolymorphicFaces(name, symbol, baseURI, _daoAddress, _arweaveAssetsJSON) {
        baseGenomeChangePrice = _baseGenomeChangePrice;
        randomizeGenomePrice = _randomizeGenomePrice;
    }

    function changeBaseGenomeChangePrice(uint256 newGenomeChangePrice)
        public
        virtual
        override
        onlyDAO
    {
        baseGenomeChangePrice = newGenomeChangePrice;
        emit BaseGenomeChangePriceChanged(newGenomeChangePrice);
    }

    function changeRandomizeGenomePrice(uint256 newRandomizeGenomePrice)
        public
        virtual
        override
        onlyDAO
    {
        randomizeGenomePrice = newRandomizeGenomePrice;
        emit RandomizeGenomePriceChanged(newRandomizeGenomePrice);
    }

    function morphGene(uint256 tokenId, uint256 genePosition)
        public
        payable
        virtual
        override
        nonReentrant
    {
        _beforeGenomeChange(tokenId);
        uint256 price = priceForGenomeChange(tokenId);

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

        uint256 excessAmount = msg.value - price;
        if (excessAmount > 0) {
            (bool returnExcessStatus, ) = _msgSender().call{
                value: excessAmount
            }("");
            require(returnExcessStatus, "Failed to return excess.");
        }

        uint256 oldGene = _genes[tokenId];
        uint256 newTrait = geneGenerator.random() % 100;
        _genes[tokenId] = replaceGene(oldGene, newTrait, genePosition);
        _genomeChanges[tokenId]++;
        isNotVirgin[tokenId] = true;
        emit TokenMorphed(
            tokenId,
            oldGene,
            _genes[tokenId],
            price,
            FacesEventType.MORPH
        );
    }

    function replaceGene(
        uint256 genome,
        uint256 replacement,
        uint256 genePosition
    ) internal pure virtual returns (uint256 newGene) {
        require(genePosition < TOTAL_ATTRIBUTES, "Bad gene position");
        uint256 mod = 0;
        if (genePosition >= 0) {
            mod = genome % (10**(genePosition * 2)); // Each gene is 2 digits long
        }

        uint256 div = (genome / (10**((genePosition + 1) * 2))) *
            (10**((genePosition + 1) * 2));

        uint256 insert = replacement * (10**(genePosition * 2));
        newGene = div + insert + mod;
        return newGene;
    }

    function randomizeGenome(uint256 tokenId)
        public
        payable
        virtual
        override
        nonReentrant
    {
        _beforeGenomeChange(tokenId);

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

        uint256 excessAmount = msg.value - randomizeGenomePrice;
        if (excessAmount > 0) {
            (bool returnExcessStatus, ) = _msgSender().call{
                value: excessAmount
            }("");
            require(returnExcessStatus, "Failed to return excess.");
        }

        uint256 oldGene = _genes[tokenId];
        _genes[tokenId] = geneGenerator.random();
        _genomeChanges[tokenId] = 0;
        isNotVirgin[tokenId] = true;
        emit TokenMorphed(
            tokenId,
            oldGene,
            _genes[tokenId],
            randomizeGenomePrice,
            FacesEventType.MORPH
        );
    }

    function whitelistBridgeAddress(address bridgeAddress, bool status)
        external
        override
        onlyDAO
    {
        whitelistTunnelAddresses[bridgeAddress] = status;
    }

    function priceForGenomeChange(uint256 tokenId)
        public
        view
        virtual
        override
        returns (uint256 price)
    {
        uint256 pastChanges = _genomeChanges[tokenId];

        return baseGenomeChangePrice * (1 << pastChanges);
    }

    function genomeChanges(uint256 tokenId)
        public
        view
        override
        returns (uint256 genomeChnages)
    {
        return _genomeChanges[tokenId];
    }

    function _beforeGenomeChange(uint256 tokenId) internal view {
        require(
            !address(_msgSender()).isContract(),
            "Caller cannot be a contract"
        );
        require(
            _msgSender() == tx.origin,
            "Msg sender should be original caller"
        );

        beforeTransfer(tokenId, _msgSender());
    }

    function beforeTransfer(uint256 tokenId, address owner) internal view {
        require(
            ownerOf(tokenId) == owner,
            "FacesWithGeneChanger: cannot change genome of token that is not own"
        );
    }

    function wormholeUpdateGene(
        uint256 tokenId,
        uint256 gene,
        bool isVirgin,
        uint256 genomeChangesCount
    ) external nonReentrant onlyTunnel {
        uint256 oldGene = _genes[tokenId];
        _genes[tokenId] = gene;
        isNotVirgin[tokenId] = isVirgin;
        _genomeChanges[tokenId] = genomeChangesCount;

        emit TokenMorphed(
            tokenId,
            oldGene,
            _genes[tokenId],
            priceForGenomeChange(tokenId),
            FacesEventType.MORPH
        );
    }
}

File 5 of 42 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 42 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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 7 of 42 : IPolymorphRoot.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.14;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

interface IPolymorphRoot is IERC721 {
    function mint() external payable;

    function bulkBuy(uint256 amount) external payable;
}

File 8 of 42 : Polymorph.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.14;
import "./IPolymorph.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "../ERC721PresetMinterPauserAutoId.sol";
import "../../lib/PolymorphGeneGenerator.sol";
import "../../modifiers/DAOControlled.sol";

contract Polymorph is IPolymorph, ERC721PresetMinterPauserAutoId, ReentrancyGuard {
    using PolymorphGeneGenerator for PolymorphGeneGenerator.Gene;

    PolymorphGeneGenerator.Gene internal geneGenerator;

    address payable public daoAddress;
    uint256 public polymorphPrice;
    uint256 public maxSupply;
    uint256 public bulkBuyLimit;
    string public arweaveAssetsJSON;

    event TokenMorphed(uint256 indexed tokenId, uint256 oldGene, uint256 newGene, uint256 price, Polymorph.PolymorphEventType eventType);
    event TokenMinted(uint256 indexed tokenId, uint256 newGene);
    event PolymorphPriceChanged(uint256 newPolymorphPrice);
    event MaxSupplyChanged(uint256 newMaxSupply);
    event BulkBuyLimitChanged(uint256 newBulkBuyLimit);
    //event BaseURIChanged(string baseURI);
    event arweaveAssetsJSONChanged(string arweaveAssetsJSON);
    event TokenBurnedAndMinted(uint256 tokenId, uint256 newGene);
    
    enum PolymorphEventType { MINT, MORPH, TRANSFER }

     // Optional mapping for token URIs
    mapping (uint256 => uint256) internal _genes;

    constructor(string memory name, string memory symbol, string memory baseURI, address payable _daoAddress, uint256 _polymorphPrice, uint256 _maxSupply, uint256 _bulkBuyLimit, string memory _arweaveAssetsJSON) ERC721PresetMinterPauserAutoId(name, symbol, baseURI) public {
        daoAddress = _daoAddress;
        polymorphPrice = _polymorphPrice;
        maxSupply = _maxSupply;
        bulkBuyLimit = _bulkBuyLimit;
        arweaveAssetsJSON = _arweaveAssetsJSON;
        geneGenerator.random();
    }

    modifier onlyDAO() {
        require(msg.sender == daoAddress, "Not called from the dao");
        _;
    }

    function geneOf(uint256 tokenId) public view virtual override returns (uint256 gene) {
        return _genes[tokenId];
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721PresetMinterPauserAutoId) {
        ERC721PresetMinterPauserAutoId._beforeTokenTransfer(from, to, tokenId);
        emit TokenMorphed(tokenId, _genes[tokenId], _genes[tokenId], 0, PolymorphEventType.TRANSFER);
    }

    function bulkBuy(uint256 amount) public virtual payable nonReentrant {
        require(amount <= bulkBuyLimit, "Cannot bulk buy more than the preset limit");
        require(_tokenId + amount <= maxSupply, "Total supply reached");
        
        (bool transferToDaoStatus, ) = daoAddress.call{value:polymorphPrice * amount}("");
        require(transferToDaoStatus, "Address: unable to send value, recipient may have reverted");

        uint256 excessAmount = msg.value - (polymorphPrice * amount);
        if (excessAmount > 0) {
            (bool returnExcessStatus, ) = _msgSender().call{value: excessAmount}("");
            require(returnExcessStatus, "Failed to return excess.");
        }

        for (uint256 i = 0; i < amount; i++) {
           _tokenId++;
        
            _genes[_tokenId] = geneGenerator.random();
            _mint(_msgSender(), _tokenId);
            
            emit TokenMinted(_tokenId, _genes[_tokenId]);
            emit TokenMorphed(_tokenId, 0, _genes[_tokenId], polymorphPrice, PolymorphEventType.MINT); 
        }
        
    }

    function lastTokenId() public override view returns (uint256 tokenId) {
        return _tokenId;
    }

    function mint(address to) public override(ERC721PresetMinterPauserAutoId) {
        revert("Should not use this one");
    }

    function setPolymorphPrice(uint256 newPolymorphPrice) public override virtual onlyDAO {
        polymorphPrice = newPolymorphPrice;

        emit PolymorphPriceChanged(newPolymorphPrice);
    }

    function setMaxSupply(uint256 _maxSupply) public override virtual onlyDAO {
        maxSupply = _maxSupply;

        emit MaxSupplyChanged(maxSupply);
    }

    function setBulkBuyLimit(uint256 _bulkBuyLimit) public override virtual onlyDAO {
        bulkBuyLimit = _bulkBuyLimit;

        emit BulkBuyLimitChanged(_bulkBuyLimit);
    }

    function setBaseURI(string memory _baseURI) public virtual onlyDAO { 
        _setBaseURI(_baseURI);

        emit BaseURIChanged(_baseURI);
    }

    function setArweaveAssetsJSON(string memory _arweaveAssetsJSON) public virtual onlyDAO {
        arweaveAssetsJSON = _arweaveAssetsJSON;

        emit arweaveAssetsJSONChanged(_arweaveAssetsJSON);
    }
    
}

File 9 of 42 : PolymorphWithGeneChanger.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.14;

import "@openzeppelin/contracts/utils/Address.sol";
import "../../lib/PolymorphGeneGenerator.sol";
import "../../modifiers/TunnelEnabled.sol";
import "./Polymorph.sol";
import "./IPolymorphWithGeneChanger.sol";

contract PolymorphWithGeneChanger is
    IPolymorphWithGeneChanger,
    Polymorph,
    TunnelEnabled
{
    using PolymorphGeneGenerator for PolymorphGeneGenerator.Gene;
    using Address for address;

    uint256 constant private TOTAL_ATTRIBUTES = 38;

    mapping(uint256 => uint256) internal _genomeChanges;
    mapping(uint256 => bool) public isNotVirgin;
    uint256 public baseGenomeChangePrice;
    uint256 public randomizeGenomePrice;

    event BaseGenomeChangePriceChanged(uint256 newGenomeChange);
    event RandomizeGenomePriceChanged(uint256 newRandomizeGenomePriceChange);

    constructor(
        string memory name,
        string memory symbol,
        string memory baseURI,
        address payable _daoAddress,
        uint256 _polymorphPrice,
        uint256 _maxSupply,
        uint256 _bulkBuyLimit,
        uint256 _baseGenomeChangePrice,
        uint256 _randomizeGenomePrice,
        string memory _arweaveAssetsJSON
    ) Polymorph(name, symbol, baseURI, _daoAddress,_polymorphPrice,_maxSupply,_bulkBuyLimit, _arweaveAssetsJSON) {
        baseGenomeChangePrice = _baseGenomeChangePrice;
        randomizeGenomePrice = _randomizeGenomePrice;
    }

    function changeBaseGenomeChangePrice(uint256 newGenomeChangePrice)
        public
        virtual
        override
        onlyDAO
    {
        baseGenomeChangePrice = newGenomeChangePrice;
        emit BaseGenomeChangePriceChanged(newGenomeChangePrice);
    }

    function changeRandomizeGenomePrice(uint256 newRandomizeGenomePrice)
        public
        virtual
        override
        onlyDAO
    {
        randomizeGenomePrice = newRandomizeGenomePrice;
        emit RandomizeGenomePriceChanged(newRandomizeGenomePrice);
    }

    function morphGene(uint256 tokenId, uint256 genePosition)
        public
        payable
        virtual
        override
        nonReentrant
    {
        require(genePosition > 0, "Base character not morphable");
        _beforeGenomeChange(tokenId);
        uint256 price = priceForGenomeChange(tokenId);

        require(msg.value >= price, "Insufficient funds");

        uint256 oldGene = _genes[tokenId];
        uint256 newTrait = geneGenerator.random() % 100;
        _genes[tokenId] = replaceGene(oldGene, newTrait, genePosition);
        _genomeChanges[tokenId]++;
        isNotVirgin[tokenId] = true;
        emit TokenMorphed(
            tokenId,
            oldGene,
            _genes[tokenId],
            price,
            PolymorphEventType.MORPH
        );

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

    function replaceGene(
        uint256 genome,
        uint256 replacement,
        uint256 genePosition
    ) internal pure virtual returns (uint256 newGene) {
        require(genePosition < TOTAL_ATTRIBUTES, "Bad gene position");
        uint256 mod = 0;
        if (genePosition > 0) {
            mod = genome % (10**(genePosition * 2)); // Each gene is 2 digits long
        }

        uint256 div = (genome / (10**((genePosition + 1) * 2))) *
            (10**((genePosition + 1) * 2));

        uint256 insert = replacement * (10**(genePosition * 2));
        newGene = div + insert + mod;
        return newGene;
    }

    function randomizeGenome(uint256 tokenId)
        public
        payable
        virtual
        override
        nonReentrant
    {
        _beforeGenomeChange(tokenId);

        require(msg.value >= randomizeGenomePrice, "Insufficient funds");

        uint256 oldGene = _genes[tokenId];
        _genes[tokenId] = geneGenerator.random();
        _genes[tokenId] = replaceGene(_genes[tokenId], oldGene % 100, 0); // additional step so that the base character is not changed after scrambling
        _genomeChanges[tokenId] = 0;
        isNotVirgin[tokenId] = true;
        emit TokenMorphed(
            tokenId,
            oldGene,
            _genes[tokenId],
            randomizeGenomePrice,
            PolymorphEventType.MORPH
        );

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

    function whitelistBridgeAddress(address bridgeAddress, bool status)
        external
        override
        onlyDAO
    {
        whitelistTunnelAddresses[bridgeAddress] = status;
    }

    function priceForGenomeChange(uint256 tokenId)
        public
        view
        virtual
        override
        returns (uint256 price)
    {
        uint256 pastChanges = _genomeChanges[tokenId];

        return baseGenomeChangePrice * (1 << pastChanges);
    }

    function genomeChanges(uint256 tokenId)
        public
        view
        override
        returns (uint256 genomeChnages)
    {
        return _genomeChanges[tokenId];
    }

    function _beforeGenomeChange(uint256 tokenId) internal view {
        require(
            !address(_msgSender()).isContract(),
            "Caller cannot be a contract"
        );
        require(
            _msgSender() == tx.origin,
            "Msg sender should be original caller"
        );

        beforeTransfer(tokenId, _msgSender());
    }

    function beforeTransfer(uint256 tokenId, address owner) internal view {
        require(
            ownerOf(tokenId) == owner,
            "PolymorphWithGeneChanger: cannot change genome of token that is not own"
        );
    }

    function wormholeUpdateGene(
        uint256 tokenId,
        uint256 gene,
        bool isVirgin,
        uint256 genomeChangesCount
    ) external nonReentrant onlyTunnel {
        uint256 oldGene = _genes[tokenId];
        _genes[tokenId] = gene;
        isNotVirgin[tokenId] = isVirgin;
        _genomeChanges[tokenId] = genomeChangesCount;

        emit TokenMorphed(
            tokenId,
            oldGene,
            _genes[tokenId],
            priceForGenomeChange(tokenId),
            PolymorphEventType.MORPH
        );
    }
}

File 10 of 42 : IPolymorph.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.14;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

interface IPolymorph is IERC721 {
    function geneOf(uint256 tokenId) external view returns (uint256 gene);

    function setBaseURI(string memory _baseURI) external;

    function setArweaveAssetsJSON(string memory _arweaveAssetsJSON) external;

    function setPolymorphPrice(uint256 newPolymorphPrice) external;

    function setMaxSupply(uint256 maxSupply) external;

    function setBulkBuyLimit(uint256 bulkBuyLimit) external;
}

File 11 of 42 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 12 of 42 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 13 of 42 : ERC721PresetMinterPauserAutoId.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.14;

import "@openzeppelin/contracts/access/AccessControlEnumerable.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "./ERC721Consumable.sol";

/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *  - token ID and URI autogeneration
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract ERC721PresetMinterPauserAutoId is
    Context,
    AccessControlEnumerable,
    ERC721Consumable,
    ERC721Enumerable,
    ERC721Burnable,
    ERC721Pausable,
    ERC2981
{

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    uint256 internal _tokenId;

    string private _baseTokenURI;

    event BaseURIChanged(string baseURI);

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * Token URIs will be autogenerated based on `baseURI` and their token IDs.
     * See {ERC721-tokenURI}.
     */
    constructor(
        string memory name,
        string memory symbol,
        string memory baseTokenURI
    ) ERC721(name, symbol) {
        _baseTokenURI = baseTokenURI;

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());

    }

    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseTokenURI = baseURI_;
    }

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

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

    function lastTokenId() public view virtual returns (uint256 tokenId) {
        return _tokenId;
    }

    /**
     * @dev Creates a new token for `to`. Its token ID will be automatically
     * assigned (and available on the emitted {IERC721-Transfer} event), and the token
     * URI autogenerated based on the base URI passed at construction.
     *
     * See {ERC721-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to) public virtual {
        require(
            hasRole(MINTER_ROLE, _msgSender()),
            "ERC721PresetMinterPauserAutoId: must have minter role to mint"
        );

        // We cannot just use balanceOf to create the new tokenId because tokens
        // can be burned (destroyed), so we need a separate counter.
        _mint(to, _tokenId);
        _tokenId++;
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(
            hasRole(PAUSER_ROLE, _msgSender()),
            "ERC721PresetMinterPauserAutoId: must have pauser role to pause"
        );
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(
            hasRole(PAUSER_ROLE, _msgSender()),
            "ERC721PresetMinterPauserAutoId: must have pauser role to unpause"
        );
        _unpause();
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    )
        internal
        virtual
        override(ERC721, ERC721Consumable, ERC721Enumerable, ERC721Pausable)
    {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(
            AccessControlEnumerable,
            ERC721,
            ERC721Consumable,
            ERC721Enumerable,
            ERC2981
        )
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

File 14 of 42 : PolymorphGeneGenerator.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.14;

library PolymorphGeneGenerator {
    struct Gene {
        uint256 lastRandom;
    }

    function random(Gene storage g) internal returns (uint256) {
            g.lastRandom = uint256(
            keccak256(
                abi.encode(
                    keccak256(
                        abi.encodePacked(
                            msg.sender,
                            tx.origin,
                            gasleft(),
                            g.lastRandom,
                            block.timestamp,
                            block.number,
                            blockhash(block.number),
                            blockhash(block.number - 100)
                        )
                    )
                )
            )
        );
        return g.lastRandom;
    }
}

File 15 of 42 : DAOControlled.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.14;

abstract contract DAOControlled {
    address payable public daoAddress;

    constructor(address payable _daoAddress) {
        daoAddress = _daoAddress;
    }

    modifier onlyDAO() {
        require(msg.sender == daoAddress, "Not called from the dao");
        _;
    }
}

File 16 of 42 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 17 of 42 : AccessControlEnumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControlEnumerable.sol";
import "./AccessControl.sol";
import "../utils/structs/EnumerableSet.sol";

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {_grantRole} to track enumerable memberships
     */
    function _grantRole(bytes32 role, address account) internal virtual override {
        super._grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {_revokeRole} to track enumerable memberships
     */
    function _revokeRole(bytes32 role, address account) internal virtual override {
        super._revokeRole(role, account);
        _roleMembers[role].remove(account);
    }
}

File 18 of 42 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 19 of 42 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../utils/Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _burn(tokenId);
    }
}

File 20 of 42 : ERC721Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Pausable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../../security/Pausable.sol";

/**
 * @dev ERC721 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.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

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

File 21 of 42 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 22 of 42 : ERC721Consumable.sol
//SPDX-License-Identifier: MIT
pragma solidity 0.8.14;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./IERC721Consumable.sol";

abstract contract ERC721Consumable is IERC721Consumable, ERC721 {

    // Mapping from token ID to consumer address
    mapping(uint256 => address) _tokenConsumers;

    /**
     * @dev See {IERC721Consumable-consumerOf}
     */
    function consumerOf(uint256 _tokenId) view external returns (address) {
        require(_exists(_tokenId), "ERC721Consumable: consumer query for nonexistent token");
        return _tokenConsumers[_tokenId];
    }

    /**
     * @dev See {IERC721Consumable-changeConsumer}
     */
    function changeConsumer(address _consumer, uint256 _tokenId) external {
        address owner = this.ownerOf(_tokenId);
        require(msg.sender == owner ||
            msg.sender == getApproved(_tokenId) ||
            isApprovedForAll(owner, msg.sender),
            "ERC721Consumable: changeConsumer caller is not owner nor approved");
        _changeConsumer(owner, _consumer, _tokenId);
    }

    /**
     * @dev Changes the consumer
     * Requirement: `tokenId` must exist
     */
    function _changeConsumer(address _owner, address _consumer, uint256 _tokenId) internal {
        _tokenConsumers[_tokenId] = _consumer;
        emit ConsumerChanged(_owner, _consumer, _tokenId);
    }

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

    function _beforeTokenTransfer(address _from, address _to, uint256 _tokenId) internal virtual override (ERC721) {
        super._beforeTokenTransfer(_from, _to, _tokenId);

        _changeConsumer(_from, address(0), _tokenId);
    }

}

File 23 of 42 : IAccessControlEnumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";

/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable is IAccessControl {
    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

File 24 of 42 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(uint160(account), 20),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 25 of 42 : EnumerableSet.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/structs/EnumerableSet.sol)

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 *  Trying to delete such a structure from storage will likely result in data corruption, rendering the structure unusable.
 *  See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 *  In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        return _values(set._inner);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}

File 26 of 42 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 27 of 42 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 28 of 42 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 29 of 42 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: address zero is not a valid owner");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
        _safeTransfer(from, to, tokenId, data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits an {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 30 of 42 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 31 of 42 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 32 of 42 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 33 of 42 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 34 of 42 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/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 Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        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 35 of 42 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 36 of 42 : IERC721Consumable.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.14;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

/// @title ERC-721 Consumer Role extension
///  Note: the ERC-165 identifier for this interface is 0x953c8dfa
interface IERC721Consumable is IERC721 {
    /// @notice Emitted when `owner` changes the `consumer` of an NFT
    /// The zero address for consumer indicates that there is no consumer address
    /// When a Transfer event emits, this also indicates that the consumer address
    /// for that NFT (if any) is set to none
    event ConsumerChanged(
        address indexed owner,
        address indexed consumer,
        uint256 indexed tokenId
    );

    /// @notice Get the consumer address of an NFT
    /// @dev The zero address indicates that there is no consumer
    /// Throws if `_tokenId` is not a valid NFT
    /// @param _tokenId The NFT to get the consumer address for
    /// @return The consumer address for this NFT, or the zero address if there is none
    function consumerOf(uint256 _tokenId) external view returns (address);

    /// @notice Change or reaffirm the consumer address for an NFT
    /// @dev The zero address indicates there is no consumer address
    /// Throws unless `msg.sender` is the current NFT owner, an authorised
    /// operator of the current owner or approved address
    /// Throws if `_tokenId` is not valid NFT
    /// @param _consumer The new consumer of the NFT
    function changeConsumer(address _consumer, uint256 _tokenId) external;
}

File 37 of 42 : TunnelEnabled.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.14;

abstract contract TunnelEnabled {
    mapping(address => bool) public whitelistTunnelAddresses;

    modifier onlyTunnel() {
        require(
            whitelistTunnelAddresses[msg.sender],
            "Not called from the tunnel"
        );
        _;
    }
}

File 38 of 42 : IPolymorphWithGeneChanger.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.14;

interface IPolymorphWithGeneChanger {
    function morphGene(uint256 tokenId, uint256 genePosition) external payable;

    function randomizeGenome(uint256 tokenId) external payable;

    function priceForGenomeChange(uint256 tokenId)
        external
        view
        returns (uint256 price);

    function changeBaseGenomeChangePrice(uint256 newGenomeChangePrice) external;

    function changeRandomizeGenomePrice(uint256 newRandomizeGenomePrice)
        external;

    function whitelistBridgeAddress(address bridgeAddress, bool status)
        external;

    function genomeChanges(uint256 tokenId)
        external
        view
        returns (uint256 genomeChnages);
}

File 39 of 42 : PolymorphicFacesGeneGenerator.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;

library PolymorphicFacesGeneGenerator {
    struct Gene {
        uint256 lastRandom;
    }

    function random(Gene storage g) internal returns (uint256) {
            g.lastRandom = uint256(
            keccak256(
                abi.encode(
                    keccak256(
                        abi.encodePacked(
                            msg.sender,
                            tx.origin,
                            gasleft(),
                            g.lastRandom,
                            block.timestamp,
                            block.number,
                            blockhash(block.number),
                            blockhash(block.number - 100)
                        )
                    )
                )
            )
        );
        return g.lastRandom;
    }
}

File 40 of 42 : PolymorphicFaces.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;

import "./IPolymorphicFaces.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "../base/ERC721PresetMinterPauserAutoId.sol";
import "../lib/PolymorphicFacesGeneGenerator.sol";
import "../modifiers/DAOControlled.sol";

contract PolymorphicFaces is
    IPolymorphicFaces,
    ERC721PresetMinterPauserAutoId,
    ReentrancyGuard,
    DAOControlled,
    Ownable
{
    using PolymorphicFacesGeneGenerator for PolymorphicFacesGeneGenerator.Gene;

    PolymorphicFacesGeneGenerator.Gene internal geneGenerator;
    mapping(uint256 => uint256) internal _genes;
    string public arweaveAssetsJSON;


    event TokenMorphed(
        uint256 indexed tokenId,
        uint256 oldGene,        
        uint256 newGene,
        uint256 price,
        FacesEventType eventType
    );
    event TokenMinted(uint256 indexed tokenId, uint256 newGene);

    event ArweaveAssetsJSONChanged(string arweaveAssetsJSON);
    
    enum FacesEventType {
        MINT,
        MORPH,
        TRANSFER
    }

    constructor(
        string memory name,
        string memory symbol,
        string memory baseURI,
        address payable _daoAddress,
        string memory _arweaveAssetsJSON
    )
        DAOControlled(_daoAddress)
        ERC721PresetMinterPauserAutoId(name, symbol, baseURI)
    {
        arweaveAssetsJSON = _arweaveAssetsJSON;
    }

    function geneOf(uint256 tokenId) 
        public
        view
        virtual
        override
        returns (uint256 gene)
    {
        return _genes[tokenId];
    }

    function lastTokenId() public view override(ERC721PresetMinterPauserAutoId) returns (uint256 tokenId) {
        return _tokenId;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721PresetMinterPauserAutoId) {
        ERC721PresetMinterPauserAutoId._beforeTokenTransfer(from, to, tokenId);
        emit TokenMorphed(
            tokenId,
            _genes[tokenId],
            _genes[tokenId],
            0,
            FacesEventType.TRANSFER
        );
    }

    function setBaseURI(string memory _baseURI)
        public
        virtual
        override
        onlyDAO
    {
        _setBaseURI(_baseURI);

        emit BaseURIChanged(_baseURI);
    }

    function setArweaveAssetsJSON(string memory _arweaveAssetsJSON)
        public
        virtual
        override
        onlyDAO
    {
        arweaveAssetsJSON = _arweaveAssetsJSON;

        emit ArweaveAssetsJSONChanged(_arweaveAssetsJSON);
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721PresetMinterPauserAutoId, IERC165)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

File 41 of 42 : IPolymorphicFacesWithGeneChanger.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;

interface IPolymorphicFacesWithGeneChanger {
    function morphGene(uint256 tokenId, uint256 genePosition) external payable;

    function randomizeGenome(uint256 tokenId) external payable;

    function priceForGenomeChange(uint256 tokenId)
        external
        view
        returns (uint256 price);

    function changeBaseGenomeChangePrice(uint256 newGenomeChangePrice) external;

    function changeRandomizeGenomePrice(uint256 newRandomizeGenomePrice)
        external;

    function whitelistBridgeAddress(address bridgeAddress, bool status)
        external;

    function genomeChanges(uint256 tokenId)
        external
        view
        returns (uint256 genomeChnages);
}

File 42 of 42 : IPolymorphicFaces.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.14;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";

interface IPolymorphicFaces is IERC721 {
    function geneOf(uint256 tokenId) external view returns (uint256 gene);

    function setBaseURI(string memory _baseURI) external;

    function setArweaveAssetsJSON(string memory _arweaveAssetsJSON) external;
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address payable","name":"_daoAddress","type":"address"},{"internalType":"uint96","name":"_royaltyFee","type":"uint96"},{"internalType":"uint256","name":"_baseGenomeChangePrice","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_randomizeGenomePrice","type":"uint256"},{"internalType":"string","name":"_arweaveAssetsJSON","type":"string"},{"internalType":"address","name":"_polymorphV2Address","type":"address"}],"internalType":"struct PolymorphicFacesRoot.Params","name":"params","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"arweaveAssetsJSON","type":"string"}],"name":"ArweaveAssetsJSONChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newGenomeChange","type":"uint256"}],"name":"BaseGenomeChangePriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"consumer","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ConsumerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newReceiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"newDefaultRoyalty","type":"uint96"}],"name":"DefaultRoyaltyChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"MaxSupplyChanged","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":false,"internalType":"address","name":"newPolyV2Address","type":"address"}],"name":"PolyV2AddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newRandomizeGenomePriceChange","type":"uint256"}],"name":"RandomizeGenomePriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newGene","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldGene","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newGene","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"enum PolymorphicFaces.FacesEventType","name":"eventType","type":"uint8"}],"name":"TokenMorphed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"arweaveAssetsJSON","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseGenomeChangePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newGenomeChangePrice","type":"uint256"}],"name":"changeBaseGenomeChangePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_consumer","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"changeConsumer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRandomizeGenomePrice","type":"uint256"}],"name":"changeRandomizeGenomePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"consumerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"daoAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"daoMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"geneOf","outputs":[{"internalType":"uint256","name":"gene","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"genomeChanges","outputs":[{"internalType":"uint256","name":"genomeChnages","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isNotVirgin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastTokenId","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"genePosition","type":"uint256"}],"name":"morphGene","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"polymorphV2Contract","outputs":[{"internalType":"contract PolymorphRoot","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"priceForGenomeChange","outputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"randomizeGenome","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"randomizeGenomePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_arweaveAssetsJSON","type":"string"}],"name":"setArweaveAssetsJSON","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFee","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newPolyV2Address","type":"address"}],"name":"setPolyV2Address","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"bridgeAddress","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"whitelistBridgeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistTunnelAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"gene","type":"uint256"},{"internalType":"bool","name":"isVirgin","type":"bool"},{"internalType":"uint256","name":"genomeChangesCount","type":"uint256"}],"name":"wormholeUpdateGene","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162004ead38038062004ead833981016040819052620000349162000749565b80600001518160200151826040015183606001518460a001518560e00151866101000151868686868481858585828281600290805190602001906200007b92919062000564565b5080516200009190600390602084019062000564565b5050600d805460ff19169055508051620000b390601190602084019062000564565b50620000c160003362000206565b620000ed7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a63362000206565b620001197f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3362000206565b5050600160125550601380546001600160a01b0319166001600160a01b0392909216919091179055620001536200014d3390565b62000216565b80516200016890601790602084019062000564565b505050601b95909555505050601c5550505060c0830151601d5550506101008101518051620001a09160179160209091019062000564565b50806101200151601e60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550620001e460156200026860201b620024901760201c565b50620001ff816060015182608001516200030a60201b60201c565b50620008f3565b6200021282826200040f565b5050565b601480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600033325a8454424380406200028060648362000891565b6040516001600160601b03196060998a1b811660208301529790981b909616603488015260488701949094526068860192909252608885015260a884015260c88301524060e88201526101080160408051601f198184030181528282528051602091820120908301520160408051601f198184030181529190528051602090910120918290555090565b6127106001600160601b03821611156200037e5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620003d65760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000375565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600e55565b6200042682826200045260201b620025351760201c565b60008281526001602090815260409091206200044d918390620025b9620004f2821b17901c565b505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff1662000212576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620004ae3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600062000509836001600160a01b03841662000512565b90505b92915050565b60008181526001830160205260408120546200055b575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200050c565b5060006200050c565b8280546200057290620008b7565b90600052602060002090601f016020900481019282620005965760008555620005e1565b82601f10620005b157805160ff1916838001178555620005e1565b82800160010185558215620005e1579182015b82811115620005e1578251825591602001919060010190620005c4565b50620005ef929150620005f3565b5090565b5b80821115620005ef5760008155600101620005f4565b634e487b7160e01b600052604160045260246000fd5b60405161014081016001600160401b03811182821017156200064657620006466200060a565b60405290565b604051601f8201601f191681016001600160401b03811182821017156200067757620006776200060a565b604052919050565b600082601f8301126200069157600080fd5b81516001600160401b03811115620006ad57620006ad6200060a565b6020620006c3601f8301601f191682016200064c565b8281528582848701011115620006d857600080fd5b60005b83811015620006f8578581018301518282018401528201620006db565b838111156200070a5760008385840101525b5095945050505050565b80516001600160a01b03811681146200072c57600080fd5b919050565b80516001600160601b03811681146200072c57600080fd5b6000602082840312156200075c57600080fd5b81516001600160401b03808211156200077457600080fd5b9083019061014082860312156200078a57600080fd5b6200079462000620565b825182811115620007a457600080fd5b620007b2878286016200067f565b825250602083015182811115620007c857600080fd5b620007d6878286016200067f565b602083015250604083015182811115620007ef57600080fd5b620007fd878286016200067f565b604083015250620008116060840162000714565b6060820152620008246080840162000731565b608082015260a083015160a082015260c083015160c082015260e083015160e082015261010080840151838111156200085c57600080fd5b6200086a888287016200067f565b82840152505061012091506200088282840162000714565b91810191909152949350505050565b600082821015620008b257634e487b7160e01b600052601160045260246000fd5b500390565b600181811c90821680620008cc57607f821691505b602082108103620008ed57634e487b7160e01b600052602260045260246000fd5b50919050565b6145aa80620009036000396000f3fe6080604052600436106103c35760003560e01c80636a627842116101f2578063b88d4fde1161010d578063d5abeb01116100a0578063ec9c074c1161006f578063ec9c074c14610ba0578063f2fde38b14610bb6578063f528a62714610bd6578063f84ddf0b14610beb57600080fd5b8063d5abeb0114610b16578063e589233114610b2c578063e63ab1e914610b4c578063e985e9c514610b8057600080fd5b8063ce14617d116100dc578063ce14617d14610a8c578063d45351e514610aa2578063d539139314610ac2578063d547741f14610af657600080fd5b8063b88d4fde146109fc578063c87b56dd14610a1c578063ca15c87314610a3c578063cccb6d0d14610a5c57600080fd5b80639010d07c116101855780639e7bb467116101545780639e7bb46714610994578063a217fddf146109a7578063a22cb465146109bc578063ab39a3c8146109dc57600080fd5b80639010d07c1461091f57806391d148541461093f57806395d89b411461095f57806398c5c0781461097457600080fd5b806370b5aecb116101c157806370b5aecb146108b7578063715018a6146108d75780638456cb59146108ec5780638da5cb5b1461090157600080fd5b80636a627842146108425780636c0360eb146108625780636f8b44b01461087757806370a082311461089757600080fd5b80632f745c59116102e257806355f804b31161027557806362759f6c1161024457806362759f6c146107b55780636352211e146107d55780636a1c03dc146107f55780636a5be6861461081557600080fd5b806355f804b31461074a57806356a5c9261461076a57806356b1b3001461077d5780635c975abb1461079d57600080fd5b806342842e0e116102b157806342842e0e146106ba57806342966c68146106da5780634df77416146106fa5780634f6ccce71461072a57600080fd5b80632f745c591461064557806336568abe14610665578063379607f5146106855780633f4ba83a146106a557600080fd5b80632131c68c1161035a578063274ea5f111610329578063274ea5f1146105a6578063289ea0a9146105c65780632a55205a146105e65780632f2ff15d1461062557600080fd5b80632131c68c1461050957806323b872dd1461052957806323c8d07a14610549578063248a9ca31461057657600080fd5b8063074cba6b11610396578063074cba6b14610479578063081812fc146104b4578063095ea7b3146104d457806318160ddd146104f457600080fd5b8063016fa7d6146103c857806301ffc9a71461040557806304634d8d1461043557806306fdde0314610457575b600080fd5b3480156103d457600080fd5b50601e546103e8906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561041157600080fd5b50610425610420366004613c6a565b610c00565b60405190151581526020016103fc565b34801561044157600080fd5b50610455610450366004613c9c565b610c11565b005b34801561046357600080fd5b5061046c610c9c565b6040516103fc9190613d39565b34801561048557600080fd5b506104a6610494366004613d4c565b601f6020526000908152604090205481565b6040519081526020016103fc565b3480156104c057600080fd5b506103e86104cf366004613d69565b610d2e565b3480156104e057600080fd5b506104556104ef366004613d82565b610d55565b34801561050057600080fd5b50600b546104a6565b34801561051557600080fd5b506013546103e8906001600160a01b031681565b34801561053557600080fd5b50610455610544366004613dae565b610e6a565b34801561055557600080fd5b506104a6610564366004613d69565b60009081526019602052604090205490565b34801561058257600080fd5b506104a6610591366004613d69565b60009081526020819052604090206001015490565b3480156105b257600080fd5b506104556105c1366004613d4c565b610e9c565b3480156105d257600080fd5b506104556105e1366004613d69565b610f1b565b3480156105f257600080fd5b50610606610601366004613def565b610f7a565b604080516001600160a01b0390931683526020830191909152016103fc565b34801561063157600080fd5b50610455610640366004613e11565b611026565b34801561065157600080fd5b506104a6610660366004613d82565b61104b565b34801561067157600080fd5b50610455610680366004613e11565b6110e1565b34801561069157600080fd5b506104556106a0366004613d69565b61115f565b3480156106b157600080fd5b50610455611420565b3480156106c657600080fd5b506104556106d5366004613dae565b6114c8565b3480156106e657600080fd5b506104556106f5366004613d69565b6114e3565b34801561070657600080fd5b50610425610715366004613d69565b601a6020526000908152604090205460ff1681565b34801561073657600080fd5b506104a6610745366004613d69565b611514565b34801561075657600080fd5b50610455610765366004613ec2565b6115a7565b610455610778366004613def565b611609565b34801561078957600080fd5b50610455610798366004613ec2565b611826565b3480156107a957600080fd5b50600d5460ff16610425565b3480156107c157600080fd5b506104556107d0366004613d69565b611893565b3480156107e157600080fd5b506103e86107f0366004613d69565b611a53565b34801561080157600080fd5b50610455610810366004613f20565b611ab3565b34801561082157600080fd5b506104a6610830366004613d69565b60009081526016602052604090205490565b34801561084e57600080fd5b5061045561085d366004613d4c565b611bb5565b34801561086e57600080fd5b5061046c611bfd565b34801561088357600080fd5b50610455610892366004613d69565b611c0c565b3480156108a357600080fd5b506104a66108b2366004613d4c565b611c6b565b3480156108c357600080fd5b506104556108d2366004613d82565b611cf1565b3480156108e357600080fd5b50610455611e1d565b3480156108f857600080fd5b50610455611e2f565b34801561090d57600080fd5b506014546001600160a01b03166103e8565b34801561092b57600080fd5b506103e861093a366004613def565b611ed3565b34801561094b57600080fd5b5061042561095a366004613e11565b611ef2565b34801561096b57600080fd5b5061046c611f1b565b34801561098057600080fd5b5061045561098f366004613d69565b611f2a565b6104556109a2366004613d69565b611f89565b3480156109b357600080fd5b506104a6600081565b3480156109c857600080fd5b506104556109d7366004613f5d565b612165565b3480156109e857600080fd5b506104556109f7366004613f5d565b612170565b348015610a0857600080fd5b50610455610a17366004613f92565b6121c5565b348015610a2857600080fd5b5061046c610a37366004613d69565b6121fd565b348015610a4857600080fd5b506104a6610a57366004613d69565b612263565b348015610a6857600080fd5b50610425610a77366004613d4c565b60186020526000908152604090205460ff1681565b348015610a9857600080fd5b506104a6601b5481565b348015610aae57600080fd5b506104a6610abd366004613d69565b61227a565b348015610ace57600080fd5b506104a67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b348015610b0257600080fd5b50610455610b11366004613e11565b61229a565b348015610b2257600080fd5b506104a6601d5481565b348015610b3857600080fd5b506103e8610b47366004613d69565b6122bf565b348015610b5857600080fd5b506104a67f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b348015610b8c57600080fd5b50610425610b9b366004614012565b61235e565b348015610bac57600080fd5b506104a6601c5481565b348015610bc257600080fd5b50610455610bd1366004613d4c565b61238c565b348015610be257600080fd5b5061046c612402565b348015610bf757600080fd5b506010546104a6565b6000610c0b826125ce565b92915050565b6013546001600160a01b03163314610c445760405162461bcd60e51b8152600401610c3b90614040565b60405180910390fd5b610c4e82826125d9565b604080516001600160a01b03841681526001600160601b03831660208201527fe5ed39918c4170e24337471011e1ccdeb5e4a433f53fae4eb2ad73e03cd21bda910160405180910390a15050565b606060028054610cab90614077565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd790614077565b8015610d245780601f10610cf957610100808354040283529160200191610d24565b820191906000526020600020905b815481529060010190602001808311610d0757829003601f168201915b5050505050905090565b6000610d39826126d6565b506000908152600660205260409020546001600160a01b031690565b6000610d6082611a53565b9050806001600160a01b0316836001600160a01b031603610dcd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c3b565b336001600160a01b0382161480610de95750610de9813361235e565b610e5b5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610c3b565b610e658383612735565b505050565b610e75335b826127a3565b610e915760405162461bcd60e51b8152600401610c3b906140b1565b610e65838383612802565b6013546001600160a01b03163314610ec65760405162461bcd60e51b8152600401610c3b90614040565b601e80546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ec2919217d5d2381c3a8e75d708902dfe1bc0a6e3b2829ea35289a0cea7877e906020015b60405180910390a150565b6013546001600160a01b03163314610f455760405162461bcd60e51b8152600401610c3b90614040565b601b8190556040518181527fb1d78271daba9a366098d40b64d642a1399cabaa22c5234bacc87e92cef82ae690602001610f10565b6000828152600f602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610fef575060408051808201909152600e546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061100e906001600160601b031687614115565b611018919061414a565b915196919550909350505050565b600082815260208190526040902060010154611041816129a9565b610e6583836129b3565b600061105683611c6b565b82106110b85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c3b565b506001600160a01b03919091166000908152600960209081526040808320938352929052205490565b6001600160a01b03811633146111515760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c3b565b61115b82826129d5565b5050565b6002601254036111815760405162461bcd60e51b8152600401610c3b9061415e565b600260125560148111156111e85760405162461bcd60e51b815260206004820152602860248201527f43616e277420636c61696d206d6f7265207468616e20323020666163657320696044820152670dc40dedcca40e8f60c31b6064820152608401610c3b565b601d54816010546111f99190614195565b111561123e5760405162461bcd60e51b8152602060048201526014602482015273151bdd185b081cdd5c1c1b1e481c995858da195960621b6044820152606401610c3b565b60005b8181101561141757336000818152601f60205260409081902054601e5491516315889e4360e01b81526004810193909352916001600160a01b03909116906315889e4390602401602060405180830381865afa1580156112a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c991906141ad565b116113255760405162461bcd60e51b815260206004820152602660248201527f5573657220616c726561647920636c61696d656420616c6c20616c6c6f77656460448201526520666163657360d01b6064820152608401610c3b565b336000908152601f60205260408120805491611340836141c6565b909155505060108054906000611355836141c6565b91905055506113646015612490565b601054600090815260166020526040902055611383335b6010546129f7565b6010546000818152601660209081526040918290205491519182527f5f7666687319b40936f33c188908d86aea154abd3f4127b4fa0a3f04f303c7da910160405180910390a2601054600081815260166020526040808220549051600080516020614555833981519152926113fd92909182908190614201565b60405180910390a28061140f816141c6565b915050611241565b50506001601255565b61144a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611ef2565b6114be576040805162461bcd60e51b81526020600482015260248101919091527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20756e70617573656064820152608401610c3b565b6114c6612b45565b565b610e65838383604051806020016040528060008152506121c5565b6114ec33610e6f565b6115085760405162461bcd60e51b8152600401610c3b906140b1565b61151181612b97565b50565b600061151f600b5490565b82106115825760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c3b565b600b82815481106115955761159561422c565b90600052602060002001549050919050565b6013546001600160a01b031633146115d15760405162461bcd60e51b8152600401610c3b90614040565b6115da81612c3e565b7f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610f109190613d39565b60026012540361162b5760405162461bcd60e51b8152600401610c3b9061415e565b600260125561163982612c51565b60006116448361227a565b6013546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114611696576040519150601f19603f3d011682016040523d82523d6000602084013e61169b565b606091505b50509050806116bc5760405162461bcd60e51b8152600401610c3b90614242565b60006116c8833461429f565b9050801561176557604051600090339083908381818185875af1925050503d8060008114611712576040519150601f19603f3d011682016040523d82523d6000602084013e611717565b606091505b50509050806117635760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903932ba3ab9371032bc31b2b9b99760411b6044820152606401610c3b565b505b6000858152601660205260408120549060646117816015612490565b61178b91906142b6565b9050611798828288612d05565b600088815260166020908152604080832093909355601990529081208054916117c0836141c6565b90915550506000878152601a60209081526040808320805460ff19166001908117909155601690925291829020549151899260008051602061455583398151915292611810928792918b91614201565b60405180910390a2505060016012555050505050565b6013546001600160a01b031633146118505760405162461bcd60e51b8152600401610c3b90614040565b8051611863906017906020840190613bbb565b507f4a826ca029d05af64e411551e15f7ee1e70af0b9bc43a31154ace86a863397b481604051610f109190613d39565b6013546001600160a01b031633146118bd5760405162461bcd60e51b8152600401610c3b90614040565b60198111156119245760405162461bcd60e51b815260206004820152602d60248201527f44414f2063616e206d696e74206174206d6f737420323520666163657320706560448201526c39103a3930b739b0b1ba34b7b760991b6064820152608401610c3b565b601d54816010546119359190614195565b111561197a5760405162461bcd60e51b8152602060048201526014602482015273151bdd185b081cdd5c1c1b1e481c995858da195960621b6044820152606401610c3b565b60005b8181101561115b5760108054906000611995836141c6565b91905055506119a46015612490565b6010546000908152601660205260409020556119bf3361137b565b6010546000818152601660209081526040918290205491519182527f5f7666687319b40936f33c188908d86aea154abd3f4127b4fa0a3f04f303c7da910160405180910390a260105460008181526016602052604080822054905160008051602061455583398151915292611a3992909182908190614201565b60405180910390a280611a4b816141c6565b91505061197d565b6000818152600460205260408120546001600160a01b031680610c0b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610c3b565b600260125403611ad55760405162461bcd60e51b8152600401610c3b9061415e565b60026012553360009081526018602052604090205460ff16611b395760405162461bcd60e51b815260206004820152601a60248201527f4e6f742063616c6c65642066726f6d207468652074756e6e656c0000000000006044820152606401610c3b565b60008481526016602081815260408084208054888255601a8452828620805460ff1916891515179055601984529190942085905591905290548590600080516020614555833981519152908390611b8f8461227a565b6001604051611ba19493929190614201565b60405180910390a250506001601255505050565b60405162461bcd60e51b815260206004820152601760248201527f53686f756c64206e6f74207573652074686973206f6e650000000000000000006044820152606401610c3b565b6060611c07612e0d565b905090565b6013546001600160a01b03163314611c365760405162461bcd60e51b8152600401610c3b90614040565b601d8190556040518181527f28a10a2e0b5582da7164754cb994f6214b8af6aa7f7e003305fbc09e7106c51390602001610f10565b60006001600160a01b038216611cd55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610c3b565b506001600160a01b031660009081526005602052604090205490565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa158015611d30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5491906142ca565b9050336001600160a01b0382161480611d865750611d7182610d2e565b6001600160a01b0316336001600160a01b0316145b80611d965750611d96813361235e565b611e125760405162461bcd60e51b815260206004820152604160248201527f455243373231436f6e73756d61626c653a206368616e6765436f6e73756d657260448201527f2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656064820152601960fa1b608482015260a401610c3b565b610e65818484612e1c565b611e25612e78565b6114c66000612ed2565b611e597f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611ef2565b611ecb5760405162461bcd60e51b815260206004820152603e60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20706175736500006064820152608401610c3b565b6114c6612f24565b6000828152600160205260408120611eeb9083612f61565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b606060038054610cab90614077565b6013546001600160a01b03163314611f545760405162461bcd60e51b8152600401610c3b90614040565b601c8190556040518181527fff4da8d01e7184cc8c9d6c57d64b336b1de6d676b6215408967bd071c8da7e3d90602001610f10565b600260125403611fab5760405162461bcd60e51b8152600401610c3b9061415e565b6002601255611fb981612c51565b601354601c546040516000926001600160a01b031691908381818185875af1925050503d8060008114612008576040519150601f19603f3d011682016040523d82523d6000602084013e61200d565b606091505b505090508061202e5760405162461bcd60e51b8152600401610c3b90614242565b6000601c543461203e919061429f565b905080156120db57604051600090339083908381818185875af1925050503d8060008114612088576040519150601f19603f3d011682016040523d82523d6000602084013e61208d565b606091505b50509050806120d95760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903932ba3ab9371032bc31b2b9b99760411b6044820152606401610c3b565b505b6000838152601660205260409020546120f46015612490565b600085815260166020818152604080842094855560198252808420849055601a825292839020805460ff191660019081179091559190529154601c549151879360008051602061455583398151915293612152938793909290614201565b60405180910390a2505060016012555050565b61115b338383612f6d565b6013546001600160a01b0316331461219a5760405162461bcd60e51b8152600401610c3b90614040565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6121cf33836127a3565b6121eb5760405162461bcd60e51b8152600401610c3b906140b1565b6121f78484848461303b565b50505050565b6060612208826126d6565b6000612212612e0d565b905060008151116122325760405180602001604052806000815250611eeb565b8061223c8461306e565b60405160200161224d9291906142e7565b6040516020818303038152906040529392505050565b6000818152600160205260408120610c0b9061316f565b600081815260196020526040812054601b54611eeb906001831b90614115565b6000828152602081905260409020600101546122b5816129a9565b610e6583836129d5565b6000818152600460205260408120546001600160a01b03166123425760405162461bcd60e51b815260206004820152603660248201527f455243373231436f6e73756d61626c653a20636f6e73756d6572207175657279604482015275103337b9103737b732bc34b9ba32b73a103a37b5b2b760511b6064820152608401610c3b565b506000908152600860205260409020546001600160a01b031690565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b612394612e78565b6001600160a01b0381166123f95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c3b565b61151181612ed2565b6017805461240f90614077565b80601f016020809104026020016040519081016040528092919081815260200182805461243b90614077565b80156124885780601f1061245d57610100808354040283529160200191612488565b820191906000526020600020905b81548152906001019060200180831161246b57829003601f168201915b505050505081565b600033325a8454424380406124a660648361429f565b6040516bffffffffffffffffffffffff196060998a1b811660208301529790981b909616603488015260488701949094526068860192909252608885015260a884015260c88301524060e88201526101080160408051601f198184030181528282528051602091820120908301520160408051601f198184030181529190528051602090910120918290555090565b61253f8282611ef2565b61115b576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556125753390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611eeb836001600160a01b038416613179565b6000610c0b826131c8565b6127106001600160601b03821611156126475760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610c3b565b6001600160a01b03821661269d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610c3b565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600e55565b6000818152600460205260409020546001600160a01b03166115115760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610c3b565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061276a82611a53565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806127af83611a53565b9050806001600160a01b0316846001600160a01b031614806127d657506127d6818561235e565b806127fa5750836001600160a01b03166127ef84610d2e565b6001600160a01b0316145b949350505050565b826001600160a01b031661281582611a53565b6001600160a01b0316146128795760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610c3b565b6001600160a01b0382166128db5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c3b565b6128e68383836131ed565b6128f1600082612735565b6001600160a01b038316600090815260056020526040812080546001929061291a90849061429f565b90915550506001600160a01b0382166000908152600560205260408120805460019290612948908490614195565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6115118133613239565b6129bd8282612535565b6000828152600160205260409020610e6590826125b9565b6129df828261329d565b6000828152600160205260409020610e659082613302565b6001600160a01b038216612a4d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c3b565b6000818152600460205260409020546001600160a01b031615612ab25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c3b565b612abe600083836131ed565b6001600160a01b0382166000908152600560205260408120805460019290612ae7908490614195565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612b4d613317565b600d805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612ba282611a53565b9050612bb0816000846131ed565b612bbb600083612735565b6001600160a01b0381166000908152600560205260408120805460019290612be490849061429f565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b805161115b906011906020840190613bbb565b333b15612ca05760405162461bcd60e51b815260206004820152601b60248201527f43616c6c65722063616e6e6f74206265206120636f6e747261637400000000006044820152606401610c3b565b333214612cfb5760405162461bcd60e51b8152602060048201526024808201527f4d73672073656e6465722073686f756c64206265206f726967696e616c206361604482015263363632b960e11b6064820152608401610c3b565b6115118133613360565b600060268210612d4b5760405162461bcd60e51b81526020600482015260116024820152702130b21033b2b732903837b9b4ba34b7b760791b6044820152606401610c3b565b6000612d58836002614115565b612d6390600a6143fa565b612d6d90866142b6565b90506000612d7c846001614195565b612d87906002614115565b612d9290600a6143fa565b612d9d856001614195565b612da8906002614115565b612db390600a6143fa565b612dbd908861414a565b612dc79190614115565b90506000612dd6856002614115565b612de190600a6143fa565b612deb9087614115565b905082612df88284614195565b612e029190614195565b979650505050505050565b606060118054610cab90614077565b60008181526008602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917f42ef856c2602f37ce625d252830bed486c5c8e9a4de8aa36cc3d15f304eb662b91a4505050565b6014546001600160a01b031633146114c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c3b565b601480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612f2c6133fb565b600d805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612b7a3390565b6000611eeb8383613441565b816001600160a01b0316836001600160a01b031603612fce5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c3b565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613046848484612802565b6130528484848461346b565b6121f75760405162461bcd60e51b8152600401610c3b90614406565b6060816000036130955750506040805180820190915260018152600360fc1b602082015290565b8160005b81156130bf57806130a9816141c6565b91506130b89050600a8361414a565b9150613099565b60008167ffffffffffffffff8111156130da576130da613e36565b6040519080825280601f01601f191660200182016040528015613104576020820181803683370190505b5090505b84156127fa5761311960018361429f565b9150613126600a866142b6565b613131906030614195565b60f81b8183815181106131465761314661422c565b60200101906001600160f81b031916908160001a905350613168600a8661414a565b9450613108565b6000610c0b825490565b60008181526001830160205260408120546131c057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c0b565b506000610c0b565b60006001600160e01b0319821663152a902d60e11b1480610c0b5750610c0b8261356c565b6131f8838383613591565b60008181526016602052604080822054905183926000805160206145558339815191529261322c9290918291600290614201565b60405180910390a2505050565b6132438282611ef2565b61115b5761325b816001600160a01b0316601461359c565b61326683602061359c565b604051602001613277929190614458565b60408051601f198184030181529082905262461bcd60e51b8252610c3b91600401613d39565b6132a78282611ef2565b1561115b576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000611eeb836001600160a01b038416613738565b600d5460ff166114c65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c3b565b806001600160a01b031661337383611a53565b6001600160a01b03161461115b5760405162461bcd60e51b815260206004820152604360248201527f46616365735769746847656e654368616e6765723a2063616e6e6f742063686160448201527f6e67652067656e6f6d65206f6620746f6b656e2074686174206973206e6f742060648201526237bbb760e91b608482015260a401610c3b565b600d5460ff16156114c65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610c3b565b60008260000182815481106134585761345861422c565b9060005260206000200154905092915050565b60006001600160a01b0384163b1561356157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906134af9033908990889088906004016144cd565b6020604051808303816000875af19250505080156134ea575060408051601f3d908101601f191682019092526134e79181019061450a565b60015b613547573d808015613518576040519150601f19603f3d011682016040523d82523d6000602084013e61351d565b606091505b50805160000361353f5760405162461bcd60e51b8152600401610c3b90614406565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127fa565b506001949350505050565b60006001600160e01b0319821663780e9d6360e01b1480610c0b5750610c0b8261382b565b610e65838383613850565b606060006135ab836002614115565b6135b6906002614195565b67ffffffffffffffff8111156135ce576135ce613e36565b6040519080825280601f01601f1916602001820160405280156135f8576020820181803683370190505b509050600360fc1b816000815181106136135761361361422c565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106136425761364261422c565b60200101906001600160f81b031916908160001a9053506000613666846002614115565b613671906001614195565b90505b60018111156136e9576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106136a5576136a561422c565b1a60f81b8282815181106136bb576136bb61422c565b60200101906001600160f81b031916908160001a90535060049490941c936136e281614527565b9050613674565b508315611eeb5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c3b565b6000818152600183016020526040812054801561382157600061375c60018361429f565b85549091506000906137709060019061429f565b90508181146137d55760008660000182815481106137905761379061422c565b90600052602060002001549050808760000184815481106137b3576137b361422c565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806137e6576137e661453e565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610c0b565b6000915050610c0b565b60006001600160e01b03198216634a9e46fd60e11b1480610c0b5750610c0b826138c2565b61385b838383613902565b600d5460ff1615610e655760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610c3b565b60006001600160e01b031982166380ac58cd60e01b14806138f357506001600160e01b03198216635b5e139f60e01b145b80610c0b5750610c0b826139c5565b61390d8383836139ea565b6001600160a01b0383166139685761396381600b80546000838152600c60205260408120829055600182018355919091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90155565b61398b565b816001600160a01b0316836001600160a01b03161461398b5761398b83826139f6565b6001600160a01b0382166139a257610e6581613a93565b826001600160a01b0316826001600160a01b031614610e6557610e658282613b42565b60006001600160e01b03198216635a05180f60e01b1480610c0b5750610c0b82613b86565b610e6583600083612e1c565b60006001613a0384611c6b565b613a0d919061429f565b6000838152600a6020526040902054909150808214613a60576001600160a01b03841660009081526009602090815260408083208584528252808320548484528184208190558352600a90915290208190555b506000918252600a602090815260408084208490556001600160a01b039094168352600981528383209183525290812055565b600b54600090613aa59060019061429f565b6000838152600c6020526040812054600b8054939450909284908110613acd57613acd61422c565b9060005260206000200154905080600b8381548110613aee57613aee61422c565b6000918252602080832090910192909255828152600c9091526040808220849055858252812055600b805480613b2657613b2661453e565b6001900381819060005260206000200160009055905550505050565b6000613b4d83611c6b565b6001600160a01b0390931660009081526009602090815260408083208684528252808320859055938252600a9052919091209190915550565b60006001600160e01b03198216637965db0b60e01b1480610c0b57506301ffc9a760e01b6001600160e01b0319831614610c0b565b828054613bc790614077565b90600052602060002090601f016020900481019282613be95760008555613c2f565b82601f10613c0257805160ff1916838001178555613c2f565b82800160010185558215613c2f579182015b82811115613c2f578251825591602001919060010190613c14565b50613c3b929150613c3f565b5090565b5b80821115613c3b5760008155600101613c40565b6001600160e01b03198116811461151157600080fd5b600060208284031215613c7c57600080fd5b8135611eeb81613c54565b6001600160a01b038116811461151157600080fd5b60008060408385031215613caf57600080fd5b8235613cba81613c87565b915060208301356001600160601b0381168114613cd657600080fd5b809150509250929050565b60005b83811015613cfc578181015183820152602001613ce4565b838111156121f75750506000910152565b60008151808452613d25816020860160208601613ce1565b601f01601f19169290920160200192915050565b602081526000611eeb6020830184613d0d565b600060208284031215613d5e57600080fd5b8135611eeb81613c87565b600060208284031215613d7b57600080fd5b5035919050565b60008060408385031215613d9557600080fd5b8235613da081613c87565b946020939093013593505050565b600080600060608486031215613dc357600080fd5b8335613dce81613c87565b92506020840135613dde81613c87565b929592945050506040919091013590565b60008060408385031215613e0257600080fd5b50508035926020909101359150565b60008060408385031215613e2457600080fd5b823591506020830135613cd681613c87565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115613e6757613e67613e36565b604051601f8501601f19908116603f01168101908282118183101715613e8f57613e8f613e36565b81604052809350858152868686011115613ea857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215613ed457600080fd5b813567ffffffffffffffff811115613eeb57600080fd5b8201601f81018413613efc57600080fd5b6127fa84823560208401613e4c565b80358015158114613f1b57600080fd5b919050565b60008060008060808587031215613f3657600080fd5b8435935060208501359250613f4d60408601613f0b565b9396929550929360600135925050565b60008060408385031215613f7057600080fd5b8235613f7b81613c87565b9150613f8960208401613f0b565b90509250929050565b60008060008060808587031215613fa857600080fd5b8435613fb381613c87565b93506020850135613fc381613c87565b925060408501359150606085013567ffffffffffffffff811115613fe657600080fd5b8501601f81018713613ff757600080fd5b61400687823560208401613e4c565b91505092959194509250565b6000806040838503121561402557600080fd5b823561403081613c87565b91506020830135613cd681613c87565b60208082526017908201527f4e6f742063616c6c65642066726f6d207468652064616f000000000000000000604082015260600190565b600181811c9082168061408b57607f821691505b6020821081036140ab57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561412f5761412f6140ff565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261415957614159614134565b500490565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156141a8576141a86140ff565b500190565b6000602082840312156141bf57600080fd5b5051919050565b6000600182016141d8576141d86140ff565b5060010190565b600381106141fd57634e487b7160e01b600052602160045260246000fd5b9052565b84815260208101849052604081018390526080810161422360608301846141df565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6000828210156142b1576142b16140ff565b500390565b6000826142c5576142c5614134565b500690565b6000602082840312156142dc57600080fd5b8151611eeb81613c87565b600083516142f9818460208801613ce1565b83519083019061430d818360208801613ce1565b01949350505050565b600181815b80851115614351578160001904821115614337576143376140ff565b8085161561434457918102915b93841c939080029061431b565b509250929050565b60008261436857506001610c0b565b8161437557506000610c0b565b816001811461438b5760028114614395576143b1565b6001915050610c0b565b60ff8411156143a6576143a66140ff565b50506001821b610c0b565b5060208310610133831016604e8410600b84101617156143d4575081810a610c0b565b6143de8383614316565b80600019048211156143f2576143f26140ff565b029392505050565b6000611eeb8383614359565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614490816017850160208801613ce1565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516144c1816028840160208801613ce1565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061450090830184613d0d565b9695505050505050565b60006020828403121561451c57600080fd5b8151611eeb81613c54565b600081614536576145366140ff565b506000190190565b634e487b7160e01b600052603160045260246000fdfe8c0bdd7bca83c4e0c810cbecf44bc544a9dc0b9f265664e31ce0ce85f07a052ba2646970667358221220352d1e42e1baed6760fe9f97d6b7e1e6b2983dfd300cc6f87e9b7c56e758cf5964736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000a8047c2a86d5a188b0e15c3c10e2bc144cb272c200000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000b5433e67c067cad4cb36529f3f2d61ec0fb59f890000000000000000000000000000000000000000000000000000000000000011506f6c796d6f727068696320466163657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054641434553000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004b68747470733a2f2f75732d63656e7472616c312d706f6c796d6f7270686d657461646174612e636c6f756466756e6374696f6e732e6e65742f66616365732d6d657461646174613f69643d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103c35760003560e01c80636a627842116101f2578063b88d4fde1161010d578063d5abeb01116100a0578063ec9c074c1161006f578063ec9c074c14610ba0578063f2fde38b14610bb6578063f528a62714610bd6578063f84ddf0b14610beb57600080fd5b8063d5abeb0114610b16578063e589233114610b2c578063e63ab1e914610b4c578063e985e9c514610b8057600080fd5b8063ce14617d116100dc578063ce14617d14610a8c578063d45351e514610aa2578063d539139314610ac2578063d547741f14610af657600080fd5b8063b88d4fde146109fc578063c87b56dd14610a1c578063ca15c87314610a3c578063cccb6d0d14610a5c57600080fd5b80639010d07c116101855780639e7bb467116101545780639e7bb46714610994578063a217fddf146109a7578063a22cb465146109bc578063ab39a3c8146109dc57600080fd5b80639010d07c1461091f57806391d148541461093f57806395d89b411461095f57806398c5c0781461097457600080fd5b806370b5aecb116101c157806370b5aecb146108b7578063715018a6146108d75780638456cb59146108ec5780638da5cb5b1461090157600080fd5b80636a627842146108425780636c0360eb146108625780636f8b44b01461087757806370a082311461089757600080fd5b80632f745c59116102e257806355f804b31161027557806362759f6c1161024457806362759f6c146107b55780636352211e146107d55780636a1c03dc146107f55780636a5be6861461081557600080fd5b806355f804b31461074a57806356a5c9261461076a57806356b1b3001461077d5780635c975abb1461079d57600080fd5b806342842e0e116102b157806342842e0e146106ba57806342966c68146106da5780634df77416146106fa5780634f6ccce71461072a57600080fd5b80632f745c591461064557806336568abe14610665578063379607f5146106855780633f4ba83a146106a557600080fd5b80632131c68c1161035a578063274ea5f111610329578063274ea5f1146105a6578063289ea0a9146105c65780632a55205a146105e65780632f2ff15d1461062557600080fd5b80632131c68c1461050957806323b872dd1461052957806323c8d07a14610549578063248a9ca31461057657600080fd5b8063074cba6b11610396578063074cba6b14610479578063081812fc146104b4578063095ea7b3146104d457806318160ddd146104f457600080fd5b8063016fa7d6146103c857806301ffc9a71461040557806304634d8d1461043557806306fdde0314610457575b600080fd5b3480156103d457600080fd5b50601e546103e8906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561041157600080fd5b50610425610420366004613c6a565b610c00565b60405190151581526020016103fc565b34801561044157600080fd5b50610455610450366004613c9c565b610c11565b005b34801561046357600080fd5b5061046c610c9c565b6040516103fc9190613d39565b34801561048557600080fd5b506104a6610494366004613d4c565b601f6020526000908152604090205481565b6040519081526020016103fc565b3480156104c057600080fd5b506103e86104cf366004613d69565b610d2e565b3480156104e057600080fd5b506104556104ef366004613d82565b610d55565b34801561050057600080fd5b50600b546104a6565b34801561051557600080fd5b506013546103e8906001600160a01b031681565b34801561053557600080fd5b50610455610544366004613dae565b610e6a565b34801561055557600080fd5b506104a6610564366004613d69565b60009081526019602052604090205490565b34801561058257600080fd5b506104a6610591366004613d69565b60009081526020819052604090206001015490565b3480156105b257600080fd5b506104556105c1366004613d4c565b610e9c565b3480156105d257600080fd5b506104556105e1366004613d69565b610f1b565b3480156105f257600080fd5b50610606610601366004613def565b610f7a565b604080516001600160a01b0390931683526020830191909152016103fc565b34801561063157600080fd5b50610455610640366004613e11565b611026565b34801561065157600080fd5b506104a6610660366004613d82565b61104b565b34801561067157600080fd5b50610455610680366004613e11565b6110e1565b34801561069157600080fd5b506104556106a0366004613d69565b61115f565b3480156106b157600080fd5b50610455611420565b3480156106c657600080fd5b506104556106d5366004613dae565b6114c8565b3480156106e657600080fd5b506104556106f5366004613d69565b6114e3565b34801561070657600080fd5b50610425610715366004613d69565b601a6020526000908152604090205460ff1681565b34801561073657600080fd5b506104a6610745366004613d69565b611514565b34801561075657600080fd5b50610455610765366004613ec2565b6115a7565b610455610778366004613def565b611609565b34801561078957600080fd5b50610455610798366004613ec2565b611826565b3480156107a957600080fd5b50600d5460ff16610425565b3480156107c157600080fd5b506104556107d0366004613d69565b611893565b3480156107e157600080fd5b506103e86107f0366004613d69565b611a53565b34801561080157600080fd5b50610455610810366004613f20565b611ab3565b34801561082157600080fd5b506104a6610830366004613d69565b60009081526016602052604090205490565b34801561084e57600080fd5b5061045561085d366004613d4c565b611bb5565b34801561086e57600080fd5b5061046c611bfd565b34801561088357600080fd5b50610455610892366004613d69565b611c0c565b3480156108a357600080fd5b506104a66108b2366004613d4c565b611c6b565b3480156108c357600080fd5b506104556108d2366004613d82565b611cf1565b3480156108e357600080fd5b50610455611e1d565b3480156108f857600080fd5b50610455611e2f565b34801561090d57600080fd5b506014546001600160a01b03166103e8565b34801561092b57600080fd5b506103e861093a366004613def565b611ed3565b34801561094b57600080fd5b5061042561095a366004613e11565b611ef2565b34801561096b57600080fd5b5061046c611f1b565b34801561098057600080fd5b5061045561098f366004613d69565b611f2a565b6104556109a2366004613d69565b611f89565b3480156109b357600080fd5b506104a6600081565b3480156109c857600080fd5b506104556109d7366004613f5d565b612165565b3480156109e857600080fd5b506104556109f7366004613f5d565b612170565b348015610a0857600080fd5b50610455610a17366004613f92565b6121c5565b348015610a2857600080fd5b5061046c610a37366004613d69565b6121fd565b348015610a4857600080fd5b506104a6610a57366004613d69565b612263565b348015610a6857600080fd5b50610425610a77366004613d4c565b60186020526000908152604090205460ff1681565b348015610a9857600080fd5b506104a6601b5481565b348015610aae57600080fd5b506104a6610abd366004613d69565b61227a565b348015610ace57600080fd5b506104a67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b348015610b0257600080fd5b50610455610b11366004613e11565b61229a565b348015610b2257600080fd5b506104a6601d5481565b348015610b3857600080fd5b506103e8610b47366004613d69565b6122bf565b348015610b5857600080fd5b506104a67f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b348015610b8c57600080fd5b50610425610b9b366004614012565b61235e565b348015610bac57600080fd5b506104a6601c5481565b348015610bc257600080fd5b50610455610bd1366004613d4c565b61238c565b348015610be257600080fd5b5061046c612402565b348015610bf757600080fd5b506010546104a6565b6000610c0b826125ce565b92915050565b6013546001600160a01b03163314610c445760405162461bcd60e51b8152600401610c3b90614040565b60405180910390fd5b610c4e82826125d9565b604080516001600160a01b03841681526001600160601b03831660208201527fe5ed39918c4170e24337471011e1ccdeb5e4a433f53fae4eb2ad73e03cd21bda910160405180910390a15050565b606060028054610cab90614077565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd790614077565b8015610d245780601f10610cf957610100808354040283529160200191610d24565b820191906000526020600020905b815481529060010190602001808311610d0757829003601f168201915b5050505050905090565b6000610d39826126d6565b506000908152600660205260409020546001600160a01b031690565b6000610d6082611a53565b9050806001600160a01b0316836001600160a01b031603610dcd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c3b565b336001600160a01b0382161480610de95750610de9813361235e565b610e5b5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610c3b565b610e658383612735565b505050565b610e75335b826127a3565b610e915760405162461bcd60e51b8152600401610c3b906140b1565b610e65838383612802565b6013546001600160a01b03163314610ec65760405162461bcd60e51b8152600401610c3b90614040565b601e80546001600160a01b0319166001600160a01b0383169081179091556040519081527f5ec2919217d5d2381c3a8e75d708902dfe1bc0a6e3b2829ea35289a0cea7877e906020015b60405180910390a150565b6013546001600160a01b03163314610f455760405162461bcd60e51b8152600401610c3b90614040565b601b8190556040518181527fb1d78271daba9a366098d40b64d642a1399cabaa22c5234bacc87e92cef82ae690602001610f10565b6000828152600f602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610fef575060408051808201909152600e546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101516000906127109061100e906001600160601b031687614115565b611018919061414a565b915196919550909350505050565b600082815260208190526040902060010154611041816129a9565b610e6583836129b3565b600061105683611c6b565b82106110b85760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c3b565b506001600160a01b03919091166000908152600960209081526040808320938352929052205490565b6001600160a01b03811633146111515760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c3b565b61115b82826129d5565b5050565b6002601254036111815760405162461bcd60e51b8152600401610c3b9061415e565b600260125560148111156111e85760405162461bcd60e51b815260206004820152602860248201527f43616e277420636c61696d206d6f7265207468616e20323020666163657320696044820152670dc40dedcca40e8f60c31b6064820152608401610c3b565b601d54816010546111f99190614195565b111561123e5760405162461bcd60e51b8152602060048201526014602482015273151bdd185b081cdd5c1c1b1e481c995858da195960621b6044820152606401610c3b565b60005b8181101561141757336000818152601f60205260409081902054601e5491516315889e4360e01b81526004810193909352916001600160a01b03909116906315889e4390602401602060405180830381865afa1580156112a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c991906141ad565b116113255760405162461bcd60e51b815260206004820152602660248201527f5573657220616c726561647920636c61696d656420616c6c20616c6c6f77656460448201526520666163657360d01b6064820152608401610c3b565b336000908152601f60205260408120805491611340836141c6565b909155505060108054906000611355836141c6565b91905055506113646015612490565b601054600090815260166020526040902055611383335b6010546129f7565b6010546000818152601660209081526040918290205491519182527f5f7666687319b40936f33c188908d86aea154abd3f4127b4fa0a3f04f303c7da910160405180910390a2601054600081815260166020526040808220549051600080516020614555833981519152926113fd92909182908190614201565b60405180910390a28061140f816141c6565b915050611241565b50506001601255565b61144a7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611ef2565b6114be576040805162461bcd60e51b81526020600482015260248101919091527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20756e70617573656064820152608401610c3b565b6114c6612b45565b565b610e65838383604051806020016040528060008152506121c5565b6114ec33610e6f565b6115085760405162461bcd60e51b8152600401610c3b906140b1565b61151181612b97565b50565b600061151f600b5490565b82106115825760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c3b565b600b82815481106115955761159561422c565b90600052602060002001549050919050565b6013546001600160a01b031633146115d15760405162461bcd60e51b8152600401610c3b90614040565b6115da81612c3e565b7f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610f109190613d39565b60026012540361162b5760405162461bcd60e51b8152600401610c3b9061415e565b600260125561163982612c51565b60006116448361227a565b6013546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114611696576040519150601f19603f3d011682016040523d82523d6000602084013e61169b565b606091505b50509050806116bc5760405162461bcd60e51b8152600401610c3b90614242565b60006116c8833461429f565b9050801561176557604051600090339083908381818185875af1925050503d8060008114611712576040519150601f19603f3d011682016040523d82523d6000602084013e611717565b606091505b50509050806117635760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903932ba3ab9371032bc31b2b9b99760411b6044820152606401610c3b565b505b6000858152601660205260408120549060646117816015612490565b61178b91906142b6565b9050611798828288612d05565b600088815260166020908152604080832093909355601990529081208054916117c0836141c6565b90915550506000878152601a60209081526040808320805460ff19166001908117909155601690925291829020549151899260008051602061455583398151915292611810928792918b91614201565b60405180910390a2505060016012555050505050565b6013546001600160a01b031633146118505760405162461bcd60e51b8152600401610c3b90614040565b8051611863906017906020840190613bbb565b507f4a826ca029d05af64e411551e15f7ee1e70af0b9bc43a31154ace86a863397b481604051610f109190613d39565b6013546001600160a01b031633146118bd5760405162461bcd60e51b8152600401610c3b90614040565b60198111156119245760405162461bcd60e51b815260206004820152602d60248201527f44414f2063616e206d696e74206174206d6f737420323520666163657320706560448201526c39103a3930b739b0b1ba34b7b760991b6064820152608401610c3b565b601d54816010546119359190614195565b111561197a5760405162461bcd60e51b8152602060048201526014602482015273151bdd185b081cdd5c1c1b1e481c995858da195960621b6044820152606401610c3b565b60005b8181101561115b5760108054906000611995836141c6565b91905055506119a46015612490565b6010546000908152601660205260409020556119bf3361137b565b6010546000818152601660209081526040918290205491519182527f5f7666687319b40936f33c188908d86aea154abd3f4127b4fa0a3f04f303c7da910160405180910390a260105460008181526016602052604080822054905160008051602061455583398151915292611a3992909182908190614201565b60405180910390a280611a4b816141c6565b91505061197d565b6000818152600460205260408120546001600160a01b031680610c0b5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610c3b565b600260125403611ad55760405162461bcd60e51b8152600401610c3b9061415e565b60026012553360009081526018602052604090205460ff16611b395760405162461bcd60e51b815260206004820152601a60248201527f4e6f742063616c6c65642066726f6d207468652074756e6e656c0000000000006044820152606401610c3b565b60008481526016602081815260408084208054888255601a8452828620805460ff1916891515179055601984529190942085905591905290548590600080516020614555833981519152908390611b8f8461227a565b6001604051611ba19493929190614201565b60405180910390a250506001601255505050565b60405162461bcd60e51b815260206004820152601760248201527f53686f756c64206e6f74207573652074686973206f6e650000000000000000006044820152606401610c3b565b6060611c07612e0d565b905090565b6013546001600160a01b03163314611c365760405162461bcd60e51b8152600401610c3b90614040565b601d8190556040518181527f28a10a2e0b5582da7164754cb994f6214b8af6aa7f7e003305fbc09e7106c51390602001610f10565b60006001600160a01b038216611cd55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610c3b565b506001600160a01b031660009081526005602052604090205490565b6040516331a9108f60e11b8152600481018290526000903090636352211e90602401602060405180830381865afa158015611d30573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d5491906142ca565b9050336001600160a01b0382161480611d865750611d7182610d2e565b6001600160a01b0316336001600160a01b0316145b80611d965750611d96813361235e565b611e125760405162461bcd60e51b815260206004820152604160248201527f455243373231436f6e73756d61626c653a206368616e6765436f6e73756d657260448201527f2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656064820152601960fa1b608482015260a401610c3b565b610e65818484612e1c565b611e25612e78565b6114c66000612ed2565b611e597f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611ef2565b611ecb5760405162461bcd60e51b815260206004820152603e60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20706175736500006064820152608401610c3b565b6114c6612f24565b6000828152600160205260408120611eeb9083612f61565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b606060038054610cab90614077565b6013546001600160a01b03163314611f545760405162461bcd60e51b8152600401610c3b90614040565b601c8190556040518181527fff4da8d01e7184cc8c9d6c57d64b336b1de6d676b6215408967bd071c8da7e3d90602001610f10565b600260125403611fab5760405162461bcd60e51b8152600401610c3b9061415e565b6002601255611fb981612c51565b601354601c546040516000926001600160a01b031691908381818185875af1925050503d8060008114612008576040519150601f19603f3d011682016040523d82523d6000602084013e61200d565b606091505b505090508061202e5760405162461bcd60e51b8152600401610c3b90614242565b6000601c543461203e919061429f565b905080156120db57604051600090339083908381818185875af1925050503d8060008114612088576040519150601f19603f3d011682016040523d82523d6000602084013e61208d565b606091505b50509050806120d95760405162461bcd60e51b81526020600482015260186024820152772330b4b632b2103a37903932ba3ab9371032bc31b2b9b99760411b6044820152606401610c3b565b505b6000838152601660205260409020546120f46015612490565b600085815260166020818152604080842094855560198252808420849055601a825292839020805460ff191660019081179091559190529154601c549151879360008051602061455583398151915293612152938793909290614201565b60405180910390a2505060016012555050565b61115b338383612f6d565b6013546001600160a01b0316331461219a5760405162461bcd60e51b8152600401610c3b90614040565b6001600160a01b03919091166000908152601860205260409020805460ff1916911515919091179055565b6121cf33836127a3565b6121eb5760405162461bcd60e51b8152600401610c3b906140b1565b6121f78484848461303b565b50505050565b6060612208826126d6565b6000612212612e0d565b905060008151116122325760405180602001604052806000815250611eeb565b8061223c8461306e565b60405160200161224d9291906142e7565b6040516020818303038152906040529392505050565b6000818152600160205260408120610c0b9061316f565b600081815260196020526040812054601b54611eeb906001831b90614115565b6000828152602081905260409020600101546122b5816129a9565b610e6583836129d5565b6000818152600460205260408120546001600160a01b03166123425760405162461bcd60e51b815260206004820152603660248201527f455243373231436f6e73756d61626c653a20636f6e73756d6572207175657279604482015275103337b9103737b732bc34b9ba32b73a103a37b5b2b760511b6064820152608401610c3b565b506000908152600860205260409020546001600160a01b031690565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b612394612e78565b6001600160a01b0381166123f95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c3b565b61151181612ed2565b6017805461240f90614077565b80601f016020809104026020016040519081016040528092919081815260200182805461243b90614077565b80156124885780601f1061245d57610100808354040283529160200191612488565b820191906000526020600020905b81548152906001019060200180831161246b57829003601f168201915b505050505081565b600033325a8454424380406124a660648361429f565b6040516bffffffffffffffffffffffff196060998a1b811660208301529790981b909616603488015260488701949094526068860192909252608885015260a884015260c88301524060e88201526101080160408051601f198184030181528282528051602091820120908301520160408051601f198184030181529190528051602090910120918290555090565b61253f8282611ef2565b61115b576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556125753390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611eeb836001600160a01b038416613179565b6000610c0b826131c8565b6127106001600160601b03821611156126475760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610c3b565b6001600160a01b03821661269d5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610c3b565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600e55565b6000818152600460205260409020546001600160a01b03166115115760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610c3b565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061276a82611a53565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806127af83611a53565b9050806001600160a01b0316846001600160a01b031614806127d657506127d6818561235e565b806127fa5750836001600160a01b03166127ef84610d2e565b6001600160a01b0316145b949350505050565b826001600160a01b031661281582611a53565b6001600160a01b0316146128795760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610c3b565b6001600160a01b0382166128db5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c3b565b6128e68383836131ed565b6128f1600082612735565b6001600160a01b038316600090815260056020526040812080546001929061291a90849061429f565b90915550506001600160a01b0382166000908152600560205260408120805460019290612948908490614195565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6115118133613239565b6129bd8282612535565b6000828152600160205260409020610e6590826125b9565b6129df828261329d565b6000828152600160205260409020610e659082613302565b6001600160a01b038216612a4d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c3b565b6000818152600460205260409020546001600160a01b031615612ab25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c3b565b612abe600083836131ed565b6001600160a01b0382166000908152600560205260408120805460019290612ae7908490614195565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b612b4d613317565b600d805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612ba282611a53565b9050612bb0816000846131ed565b612bbb600083612735565b6001600160a01b0381166000908152600560205260408120805460019290612be490849061429f565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b805161115b906011906020840190613bbb565b333b15612ca05760405162461bcd60e51b815260206004820152601b60248201527f43616c6c65722063616e6e6f74206265206120636f6e747261637400000000006044820152606401610c3b565b333214612cfb5760405162461bcd60e51b8152602060048201526024808201527f4d73672073656e6465722073686f756c64206265206f726967696e616c206361604482015263363632b960e11b6064820152608401610c3b565b6115118133613360565b600060268210612d4b5760405162461bcd60e51b81526020600482015260116024820152702130b21033b2b732903837b9b4ba34b7b760791b6044820152606401610c3b565b6000612d58836002614115565b612d6390600a6143fa565b612d6d90866142b6565b90506000612d7c846001614195565b612d87906002614115565b612d9290600a6143fa565b612d9d856001614195565b612da8906002614115565b612db390600a6143fa565b612dbd908861414a565b612dc79190614115565b90506000612dd6856002614115565b612de190600a6143fa565b612deb9087614115565b905082612df88284614195565b612e029190614195565b979650505050505050565b606060118054610cab90614077565b60008181526008602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917f42ef856c2602f37ce625d252830bed486c5c8e9a4de8aa36cc3d15f304eb662b91a4505050565b6014546001600160a01b031633146114c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c3b565b601480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612f2c6133fb565b600d805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612b7a3390565b6000611eeb8383613441565b816001600160a01b0316836001600160a01b031603612fce5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c3b565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b613046848484612802565b6130528484848461346b565b6121f75760405162461bcd60e51b8152600401610c3b90614406565b6060816000036130955750506040805180820190915260018152600360fc1b602082015290565b8160005b81156130bf57806130a9816141c6565b91506130b89050600a8361414a565b9150613099565b60008167ffffffffffffffff8111156130da576130da613e36565b6040519080825280601f01601f191660200182016040528015613104576020820181803683370190505b5090505b84156127fa5761311960018361429f565b9150613126600a866142b6565b613131906030614195565b60f81b8183815181106131465761314661422c565b60200101906001600160f81b031916908160001a905350613168600a8661414a565b9450613108565b6000610c0b825490565b60008181526001830160205260408120546131c057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c0b565b506000610c0b565b60006001600160e01b0319821663152a902d60e11b1480610c0b5750610c0b8261356c565b6131f8838383613591565b60008181526016602052604080822054905183926000805160206145558339815191529261322c9290918291600290614201565b60405180910390a2505050565b6132438282611ef2565b61115b5761325b816001600160a01b0316601461359c565b61326683602061359c565b604051602001613277929190614458565b60408051601f198184030181529082905262461bcd60e51b8252610c3b91600401613d39565b6132a78282611ef2565b1561115b576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6000611eeb836001600160a01b038416613738565b600d5460ff166114c65760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c3b565b806001600160a01b031661337383611a53565b6001600160a01b03161461115b5760405162461bcd60e51b815260206004820152604360248201527f46616365735769746847656e654368616e6765723a2063616e6e6f742063686160448201527f6e67652067656e6f6d65206f6620746f6b656e2074686174206973206e6f742060648201526237bbb760e91b608482015260a401610c3b565b600d5460ff16156114c65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610c3b565b60008260000182815481106134585761345861422c565b9060005260206000200154905092915050565b60006001600160a01b0384163b1561356157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906134af9033908990889088906004016144cd565b6020604051808303816000875af19250505080156134ea575060408051601f3d908101601f191682019092526134e79181019061450a565b60015b613547573d808015613518576040519150601f19603f3d011682016040523d82523d6000602084013e61351d565b606091505b50805160000361353f5760405162461bcd60e51b8152600401610c3b90614406565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127fa565b506001949350505050565b60006001600160e01b0319821663780e9d6360e01b1480610c0b5750610c0b8261382b565b610e65838383613850565b606060006135ab836002614115565b6135b6906002614195565b67ffffffffffffffff8111156135ce576135ce613e36565b6040519080825280601f01601f1916602001820160405280156135f8576020820181803683370190505b509050600360fc1b816000815181106136135761361361422c565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106136425761364261422c565b60200101906001600160f81b031916908160001a9053506000613666846002614115565b613671906001614195565b90505b60018111156136e9576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106136a5576136a561422c565b1a60f81b8282815181106136bb576136bb61422c565b60200101906001600160f81b031916908160001a90535060049490941c936136e281614527565b9050613674565b508315611eeb5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c3b565b6000818152600183016020526040812054801561382157600061375c60018361429f565b85549091506000906137709060019061429f565b90508181146137d55760008660000182815481106137905761379061422c565b90600052602060002001549050808760000184815481106137b3576137b361422c565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806137e6576137e661453e565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610c0b565b6000915050610c0b565b60006001600160e01b03198216634a9e46fd60e11b1480610c0b5750610c0b826138c2565b61385b838383613902565b600d5460ff1615610e655760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610c3b565b60006001600160e01b031982166380ac58cd60e01b14806138f357506001600160e01b03198216635b5e139f60e01b145b80610c0b5750610c0b826139c5565b61390d8383836139ea565b6001600160a01b0383166139685761396381600b80546000838152600c60205260408120829055600182018355919091527f0175b7a638427703f0dbe7bb9bbf987a2551717b34e79f33b5b1008d1fa01db90155565b61398b565b816001600160a01b0316836001600160a01b03161461398b5761398b83826139f6565b6001600160a01b0382166139a257610e6581613a93565b826001600160a01b0316826001600160a01b031614610e6557610e658282613b42565b60006001600160e01b03198216635a05180f60e01b1480610c0b5750610c0b82613b86565b610e6583600083612e1c565b60006001613a0384611c6b565b613a0d919061429f565b6000838152600a6020526040902054909150808214613a60576001600160a01b03841660009081526009602090815260408083208584528252808320548484528184208190558352600a90915290208190555b506000918252600a602090815260408084208490556001600160a01b039094168352600981528383209183525290812055565b600b54600090613aa59060019061429f565b6000838152600c6020526040812054600b8054939450909284908110613acd57613acd61422c565b9060005260206000200154905080600b8381548110613aee57613aee61422c565b6000918252602080832090910192909255828152600c9091526040808220849055858252812055600b805480613b2657613b2661453e565b6001900381819060005260206000200160009055905550505050565b6000613b4d83611c6b565b6001600160a01b0390931660009081526009602090815260408083208684528252808320859055938252600a9052919091209190915550565b60006001600160e01b03198216637965db0b60e01b1480610c0b57506301ffc9a760e01b6001600160e01b0319831614610c0b565b828054613bc790614077565b90600052602060002090601f016020900481019282613be95760008555613c2f565b82601f10613c0257805160ff1916838001178555613c2f565b82800160010185558215613c2f579182015b82811115613c2f578251825591602001919060010190613c14565b50613c3b929150613c3f565b5090565b5b80821115613c3b5760008155600101613c40565b6001600160e01b03198116811461151157600080fd5b600060208284031215613c7c57600080fd5b8135611eeb81613c54565b6001600160a01b038116811461151157600080fd5b60008060408385031215613caf57600080fd5b8235613cba81613c87565b915060208301356001600160601b0381168114613cd657600080fd5b809150509250929050565b60005b83811015613cfc578181015183820152602001613ce4565b838111156121f75750506000910152565b60008151808452613d25816020860160208601613ce1565b601f01601f19169290920160200192915050565b602081526000611eeb6020830184613d0d565b600060208284031215613d5e57600080fd5b8135611eeb81613c87565b600060208284031215613d7b57600080fd5b5035919050565b60008060408385031215613d9557600080fd5b8235613da081613c87565b946020939093013593505050565b600080600060608486031215613dc357600080fd5b8335613dce81613c87565b92506020840135613dde81613c87565b929592945050506040919091013590565b60008060408385031215613e0257600080fd5b50508035926020909101359150565b60008060408385031215613e2457600080fd5b823591506020830135613cd681613c87565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115613e6757613e67613e36565b604051601f8501601f19908116603f01168101908282118183101715613e8f57613e8f613e36565b81604052809350858152868686011115613ea857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215613ed457600080fd5b813567ffffffffffffffff811115613eeb57600080fd5b8201601f81018413613efc57600080fd5b6127fa84823560208401613e4c565b80358015158114613f1b57600080fd5b919050565b60008060008060808587031215613f3657600080fd5b8435935060208501359250613f4d60408601613f0b565b9396929550929360600135925050565b60008060408385031215613f7057600080fd5b8235613f7b81613c87565b9150613f8960208401613f0b565b90509250929050565b60008060008060808587031215613fa857600080fd5b8435613fb381613c87565b93506020850135613fc381613c87565b925060408501359150606085013567ffffffffffffffff811115613fe657600080fd5b8501601f81018713613ff757600080fd5b61400687823560208401613e4c565b91505092959194509250565b6000806040838503121561402557600080fd5b823561403081613c87565b91506020830135613cd681613c87565b60208082526017908201527f4e6f742063616c6c65642066726f6d207468652064616f000000000000000000604082015260600190565b600181811c9082168061408b57607f821691505b6020821081036140ab57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561412f5761412f6140ff565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261415957614159614134565b500490565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156141a8576141a86140ff565b500190565b6000602082840312156141bf57600080fd5b5051919050565b6000600182016141d8576141d86140ff565b5060010190565b600381106141fd57634e487b7160e01b600052602160045260246000fd5b9052565b84815260208101849052604081018390526080810161422360608301846141df565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6000828210156142b1576142b16140ff565b500390565b6000826142c5576142c5614134565b500690565b6000602082840312156142dc57600080fd5b8151611eeb81613c87565b600083516142f9818460208801613ce1565b83519083019061430d818360208801613ce1565b01949350505050565b600181815b80851115614351578160001904821115614337576143376140ff565b8085161561434457918102915b93841c939080029061431b565b509250929050565b60008261436857506001610c0b565b8161437557506000610c0b565b816001811461438b5760028114614395576143b1565b6001915050610c0b565b60ff8411156143a6576143a66140ff565b50506001821b610c0b565b5060208310610133831016604e8410600b84101617156143d4575081810a610c0b565b6143de8383614316565b80600019048211156143f2576143f26140ff565b029392505050565b6000611eeb8383614359565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614490816017850160208801613ce1565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516144c1816028840160208801613ce1565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061450090830184613d0d565b9695505050505050565b60006020828403121561451c57600080fd5b8151611eeb81613c54565b600081614536576145366140ff565b506000190190565b634e487b7160e01b600052603160045260246000fdfe8c0bdd7bca83c4e0c810cbecf44bc544a9dc0b9f265664e31ce0ce85f07a052ba2646970667358221220352d1e42e1baed6760fe9f97d6b7e1e6b2983dfd300cc6f87e9b7c56e758cf5964736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000a8047c2a86d5a188b0e15c3c10e2bc144cb272c200000000000000000000000000000000000000000000000000000000000001f400000000000000000000000000000000000000000000000000038d7ea4c6800000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000011c37937e080000000000000000000000000000000000000000000000000000000000000000240000000000000000000000000b5433e67c067cad4cb36529f3f2d61ec0fb59f890000000000000000000000000000000000000000000000000000000000000011506f6c796d6f727068696320466163657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054641434553000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004b68747470733a2f2f75732d63656e7472616c312d706f6c796d6f7270686d657461646174612e636c6f756466756e6374696f6e732e6e65742f66616365732d6d657461646174613f69643d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : params (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
20 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : 000000000000000000000000a8047c2a86d5a188b0e15c3c10e2bc144cb272c2
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [6] : 00000000000000000000000000000000000000000000000000038d7ea4c68000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [8] : 0000000000000000000000000000000000000000000000000011c37937e08000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000240
Arg [10] : 000000000000000000000000b5433e67c067cad4cb36529f3f2d61ec0fb59f89
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [12] : 506f6c796d6f7270686963204661636573000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [14] : 4641434553000000000000000000000000000000000000000000000000000000
Arg [15] : 000000000000000000000000000000000000000000000000000000000000004b
Arg [16] : 68747470733a2f2f75732d63656e7472616c312d706f6c796d6f7270686d6574
Arg [17] : 61646174612e636c6f756466756e6374696f6e732e6e65742f66616365732d6d
Arg [18] : 657461646174613f69643d000000000000000000000000000000000000000000
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000000


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.