ETH Price: $3,393.09 (-1.26%)
Gas: 2 Gwei

Token

Polys (POLY)
 

Overview

Max Total Supply

0 POLY

Holders

517

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
scottwerner.eth
Balance
8 POLY
0xebe71b162c4fd6be6f07bf11b17d271c1087bd8b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
Polys

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion
File 1 of 19 : Polys.sol
//"SPDX-License-Identifier: GPL-3.0

/*******************************************
              _                       _
             | |                     | |
  _ __   ___ | |_   _ ___   __ _ _ __| |_
 | '_ \ / _ \| | | | / __| / _` | '__| __|
 | |_) | (_) | | |_| \__ \| (_| | |  | |_
 | .__/ \___/|_|\__, |___(_)__,_|_|   \__|
 | |             __/ |
 |_|            |___/

 a homage to math, geometry and cryptography.

********************************************/
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "./SSTORE2.sol";
import "./Base64.sol";
import "./PolyRenderer.sol";


contract Polys is ERC721, ReentrancyGuard, Ownable {
    using ECDSA for bytes32;
    using Strings for uint256;
    using Base64 for bytes;

    // Token structs and types
    // -------------------------------------------
    enum TokenType {Original, Offspring, Circle}

    struct Parents {
        uint16 polyIdA;
        uint16 polyIdB;
    }

    struct TokenMetadata {
        string name;
        address creator;
        uint8 remainingChildren;
        bool wasCircled;
        TokenType tokenType;
    }

    struct Counters {
        uint8 originals;
        uint16 offspring;
    }

    // Events
    // -------------------------------------------
    event AuctionStarted(uint256 startTime);
    event BreedingStarted();
    event CirclingStarted();

    // Constants
    // -------------------------------------------
    // all eth in this wallet will be used for charity actions
    address private constant _charityWallet = 0xE00327f0f5f5F55d01C2FC6a87ddA1B8E292Ac79;

    uint8 private constant _MAX_NUM_ORIGINALS = 100;
    uint8 private constant _MAX_NUM_OFFSPRING = 16;
    uint8 private constant _MAX_PER_EARLY_ACCESS_ADDRESS = 4;
    uint8 private constant _MAX_CIRCLES_PER_WALLET = 5;

    uint private constant _START_PRICE = 16 ether;
    uint private constant _RESERVE_PRICE = 0.25 ether;
    uint private constant _AUCTION_DURATION = 1 days;
    uint private constant _HALVING_PERIOD = 4 hours; // price halves every halving period


    // State variables
    // -------------------------------------------

    // We always return the on-chain image, but currently some platforms can't render on-chain images
    // so we will also provide an off-chain version. Once the majority of the platforms upgrade and start rendering
    // on-chain images, we will stop providing the off-chain version.
    bool private _alsoShowOffChainVersion;

    // We might want to add the animation we used on the website to the NFT itself sometime in the future.
    bool private _alsoShowAnimationUrl;

    uint public auctionStartTime;
    bool public isBreedingSeason;
    bool public isCirclingSeason;
    mapping(address => uint) public availableBalance;

    Counters private _counters;
    mapping(address => uint) private _circlesMinted;

    address private _openSeaProxyRegistryAddress;
    bool private _isOpenSeaProxyActive = true;
    string private _baseUrl = "https://polys.art/poly/";

    // Original Variables
    // -------------------------------------------
    // @dev only originals have data
    mapping(uint256 => TokenMetadata) public tokenMetadata;
    mapping(uint256 => address) private _tokenDataPointers;
    mapping(address => string) private _creatorsName;

    // Offspring Variables
    // -------------------------------------------
    mapping(uint256 => Parents) private _tokenIdToParents;
    mapping(bytes32 => bool) private _tokenPairs;
    mapping(address => uint8) private _mintedOnPreSale;

    constructor(address openSeaProxyRegistryAddress) ERC721("Polys", "POLY") {
        _openSeaProxyRegistryAddress = openSeaProxyRegistryAddress;
    }

    // Creation Functions
    // -------------------------------------------
    function mint(bytes calldata polyData, string calldata name, uint256 tokenId,
        address creator, bytes calldata signature) nonReentrant payable external {
        require(tokenId <= _MAX_NUM_ORIGINALS && tokenId > 0, "1");
        require(verify(abi.encodePacked(polyData, name, tokenId, creator), signature), "2");
        require(polyData.length > 19 && polyData.length < 366, "3");
        require(polyData.length % 5 == 0, "4");
        require(bytes(name).length > 0 && bytes(name).length < 11, "5");
        require(auctionStartTime != 0, "13");

        if (msg.sender != creator) {
            require(msg.value >= price(), "6");
            uint256 tenPercent = msg.value / 10;
            availableBalance[owner()] += tenPercent;
            availableBalance[creator] += (msg.value-tenPercent);
        } else if (msg.sender != owner()) {
            // artists can mint their own pieces for 10%, and the founder can mint his pieces for free
            // so in practise each artist sets the minimum price of their NFTs,
            // if price goes lower than their minimum, they will mint them themselves.
            require(msg.value >= (price() / 10), "6");
            availableBalance[owner()] += msg.value;
        }

        TokenMetadata memory metadata;
        metadata.name = name;
        metadata.remainingChildren = _MAX_NUM_OFFSPRING;
        metadata.creator = creator;
        metadata.tokenType = TokenType.Original;

        // SSTORE2 significantly reduces the gas costs. Kudos to hypnobrando for showing me this solution.
        _tokenDataPointers[tokenId] = SSTORE2.write(polyData);
        tokenMetadata[tokenId] = metadata;
        _counters.originals += 1;

        _mint(msg.sender, tokenId);
    }

    // State changing functions
    // -------------------------------------------
    function startAuction() external onlyOwner {
        require(auctionStartTime == 0); // can't start the auction twice.
        auctionStartTime = block.timestamp;
        emit AuctionStarted(auctionStartTime);
    }

    function alsoShowOffChainVersion(bool state) external onlyOwner {
        _alsoShowOffChainVersion = state;
    }

    function alsoShowAnimationUrl(bool state) external onlyOwner {
        _alsoShowAnimationUrl = state;
    }

    function setBaseUrl(string calldata baseUrl) external onlyOwner {
        _baseUrl = baseUrl;
    }

    function startBreedingSeason() public onlyOwner {
        isBreedingSeason = true;
        emit BreedingStarted();
    }

    function startCirclingSeason() public onlyOwner {
        isCirclingSeason = true;
        emit CirclingStarted();
    }

    function signPieces(string calldata name) public {
        require(bytes(name).length < 16);
        _creatorsName[msg.sender] = name;
    }

    // Disable gas-less listings to OpenSea. Kudos to Crypto Coven!
    function setIsOpenSeaProxyActive(bool isOpenSeaProxyActive) external onlyOwner {
        _isOpenSeaProxyActive = isOpenSeaProxyActive;
    }

    // Circling and Mixing
    // -------------------------------------------
    function mintCircle(uint256 polyId) external nonReentrant payable {
        require(isCirclingSeason, "7");
        require(tokenIsOriginal(polyId), "8");
        require(tokenMetadata[polyId].wasCircled == false, "9");
        require(msg.value == 0.314 ether, "6");
        require(_circlesMinted[msg.sender] < _MAX_CIRCLES_PER_WALLET);
        _circlesMinted[msg.sender] += 1;

        uint256 circleTokenId = _MAX_NUM_ORIGINALS + polyId;

        tokenMetadata[polyId].wasCircled = true;

        _safeMint(msg.sender, circleTokenId);

        availableBalance[creatorOf(polyId)] += 0.2512 ether;
        availableBalance[owner()] += 0.0314 ether;
        availableBalance[_charityWallet] += 0.0314 ether;
    }

    function preSaleOffspring(uint256 polyIdA, uint256 polyIdB, bytes calldata signature) external nonReentrant payable {
        require(_mintedOnPreSale[msg.sender] < _MAX_PER_EARLY_ACCESS_ADDRESS, "10");
        require(verify(abi.encodePacked(msg.sender), signature), "2");
        _mintedOnPreSale[msg.sender] += 1;
        _mintOffspring(polyIdA, polyIdB);
    }

    function publicSaleOffspring(uint256 polyIdA, uint256 polyIdB) external nonReentrant payable {
        require(isBreedingSeason, "11");
        _mintOffspring(polyIdA, polyIdB);
    }

    // Internal
    // -------------------------------------------
    function verify(bytes memory message, bytes calldata signature) internal view returns (bool){
        return keccak256(message).toEthSignedMessageHash().recover(signature) == owner();
    }

    function description(bool isCircle) internal pure returns (string memory) {
        string memory shape = isCircle ? '"Circles' : '"Regular polygons';
        return string(abi.encodePacked(shape, ' on an infinitely scalable canvas."'));
    }

    // Shout out to blitmap for coming up with this breeding mechanic
    function _mintOffspring(uint256 polyIdA, uint256 polyIdB) internal {
        require(tokenIsOriginal(polyIdA) && tokenIsOriginal(polyIdB), "16");
        require(polyIdA != polyIdB, "17");
        require(tokenMetadata[polyIdA].remainingChildren > 0, "18");
        require(msg.value == 0.08 ether, "6");

        // a given pair can only be minted once
        bytes32 pairHash = keccak256(abi.encodePacked(polyIdA, polyIdB));
        require(_tokenPairs[pairHash] == false, "19");

        _counters.offspring += 1;
        uint256 offspringTokenId = 2 * _MAX_NUM_ORIGINALS + _counters.offspring;

        Parents memory parents;
        parents.polyIdA = uint16(polyIdA);
        parents.polyIdB = uint16(polyIdB);

        tokenMetadata[polyIdA].remainingChildren--;

        _tokenIdToParents[offspringTokenId] = parents;
        _tokenPairs[pairHash] = true;
        _safeMint(msg.sender, offspringTokenId);

        availableBalance[creatorOf(polyIdA)] += 0.056 ether;
        availableBalance[creatorOf(polyIdB)] += 0.008 ether;
        availableBalance[owner()] += 0.008 ether;
        availableBalance[_charityWallet] += 0.008 ether;
    }

    // Withdraw
    // -------------------------------------------
    function withdraw() public nonReentrant {
        uint256 withdrawAmount = availableBalance[msg.sender];
        availableBalance[msg.sender] = 0;
        (bool success,) = msg.sender.call{value: withdrawAmount}('');
        require(success, "12");
    }

    // Getters
    // -------------------------------------------
    function numMintedOriginals() public view returns (uint) {
        return _counters.originals;
    }

    function pairIsTaken(uint256 polyIdA, uint256 polyIdB) public view returns (bool) {
        bytes32 pairHash = keccak256(abi.encodePacked(polyIdA, polyIdB));
        return _tokenPairs[pairHash];
    }

    function price() public view returns (uint256) {
        require(block.timestamp >= auctionStartTime);
        uint timeElapsed = block.timestamp - auctionStartTime; // timeElapsed since start of the auction
        if (timeElapsed > _AUCTION_DURATION)
            return _RESERVE_PRICE;
        uint period = timeElapsed/_HALVING_PERIOD;
        uint start_price = _START_PRICE >> period;  // start price for current period
        uint end_price = _START_PRICE >> (period + 1);  // end price for current period
        timeElapsed = timeElapsed % _HALVING_PERIOD; // timeElapsed since the start of the current period
        return ((_HALVING_PERIOD - timeElapsed)*start_price + timeElapsed * end_price)/_HALVING_PERIOD;
    }

    function parentOfCircle(uint circleId) public view returns (uint256){
        require(tokenIsCircle(circleId), "14");
        return circleId - _MAX_NUM_ORIGINALS;
    }

    function creatorNameOf(uint polyId) public view returns(string memory){
        return _creatorsName[creatorOf(polyId)];
    }

    function creatorOf(uint polyId) public view returns (address){
        uint tokenId;
        if (tokenIsOriginal(polyId)){
            tokenId = polyId;
        } else if (tokenIsCircle(polyId)){
            tokenId = parentOfCircle(polyId);
        } else {
            tokenId = _tokenIdToParents[polyId].polyIdA;
        }
        return tokenMetadata[tokenId].creator;
    }

    function tokenIsOriginal(uint256 polyId) public view returns (bool) {
        return _exists(polyId) && (polyId <= _MAX_NUM_ORIGINALS);
    }

    function tokenIsCircle(uint256 polyId) public view returns (bool) {
        return _exists(polyId) && polyId > _MAX_NUM_ORIGINALS && polyId <= 2*_MAX_NUM_ORIGINALS;
    }

    function parentsOfMix(uint256 mixId) public view returns (uint256, uint256) {
        require(!tokenIsOriginal(mixId) && !tokenIsCircle(mixId));
        return (_tokenIdToParents[mixId].polyIdA, _tokenIdToParents[mixId].polyIdB);
    }

    function tokenNameOf(uint polyId) public view returns (string memory) {
        require(_exists(polyId), "15");
        if (tokenIsOriginal(polyId)) {
            return tokenMetadata[polyId].name;
        }
        if (tokenIsCircle(polyId)) {
            return string(abi.encodePacked("Circled ", tokenMetadata[parentOfCircle(polyId)].name));
        }
        Parents memory parents = _tokenIdToParents[polyId];
        return string(abi.encodePacked(tokenMetadata[parents.polyIdA].name, " ",
            tokenMetadata[parents.polyIdB].name));
    }

    function tokenDataOf(uint256 polyId) public view returns (bytes memory) {
        if (tokenIsOriginal(polyId)) {
            return SSTORE2.read(_tokenDataPointers[polyId]);
        }
        if (tokenIsCircle(polyId)) {
            return SSTORE2.read(_tokenDataPointers[parentOfCircle(polyId)]);
        }
        bytes memory composition = SSTORE2.read(_tokenDataPointers[_tokenIdToParents[polyId].polyIdA]);
        bytes memory palette = SSTORE2.read(_tokenDataPointers[_tokenIdToParents[polyId].polyIdB]);

        // Is the first palette colour equal to the background color:
        bool compositionUsesNegativeTechnique = (composition[0] == composition[3]) && (composition[1] == composition[4])
                                                && (composition[2] == composition[5]);
        // Some compositions use a few polys with the colour of the background to remove foreground from the image.
        // We call this, the "negative technique", because adding polys subtracts foreground instead of adding.
        // For this technique to be correctly translated to mixings, we do two things:
        // 1) we ordered (off-chain) all the colours in the palette according to their distance to the background color
        // so that the most similar colour to the background is the first.
        // 2) if the composition uses the "negative technique", then on the palette we replace the closest colour to the
        // background with the actual background so that this technique is applied perfectly.

        for (uint8 i = 0; i < 15; ++i) {
            if (compositionUsesNegativeTechnique && i > 2 && i < 6){
                // make the first palette colour the same as the background
                composition[i] = palette[i-3];
            } else {
                composition[i] = palette[i];
            }
        }
        return composition;
    }

    function tokenURI(uint polyId) override public view returns (string memory) {
        require(_exists(polyId), "15");
        bytes memory polyData = tokenDataOf(polyId);
        bool isCircle = tokenIsCircle(polyId);
        string memory idStr = polyId.toString();
        string memory svg = PolyRenderer.svgOf(polyData, isCircle);

        bytes memory media = abi.encodePacked('data:image/svg+xml;base64,', bytes(svg).encode());
        if (_alsoShowOffChainVersion) {
            media = abi.encodePacked(',"image_data":"', media, '","image":"', _baseUrl, idStr);
        } else {
            media = abi.encodePacked(',"image":"', media);
        }
        if (_alsoShowAnimationUrl) {
            media = abi.encodePacked(',"animation_url":"', _baseUrl, "anim/", idStr, '"', media);
        }

        string memory json = abi.encodePacked('{"name":"#', idStr, " ", tokenNameOf(polyId),
            '","description":', description(isCircle), media, '","attributes":',
            PolyRenderer.attributesOf(polyData, isCircle), '}').encode();
        return string(abi.encodePacked('data:application/json;base64,', json));
    }

    // Allow gas-less listings on OpenSea.
    function isApprovedForAll(address owner, address operator) public view override returns (bool) {
        ProxyRegistry proxyRegistry = ProxyRegistry(
            _openSeaProxyRegistryAddress
        );
        if (_isOpenSeaProxyActive && address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }
        return super.isApprovedForAll(owner, operator);
    }
}

// Used to Allow gas-less listings on OpenSea
contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/*
errors:
1: Original token id should be between 1 and 100.
2: Invalid signature.
3: Poly data length should be between 20 and 365 bytes.
4: Poly data length should be a multiple of 5.
5: The poly name needs to be between 1 and 10 characters.
6: ETH value is incorrect.
7: It is not circle season.
8: Token id is not original.
9: That parent was already circled.
10: No more pre-sale mints left.
11: It is not breeding season.
12: Withdraw failed.
13: Auction has not started yet.
14: That token is not a circle.
15: Poly does not exist.
16: One or two parents are not original
17: The parents can't be the same.
18: The first parent has 0 remaining children
19: That combination was already minted.
*/

File 2 of 19 : Bytecode.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


library Bytecode {
    error InvalidCodeAtRange(uint256 _size, uint256 _start, uint256 _end);

    /**
      @notice Generate a creation code that results on a contract with `_code` as bytecode
      @param _code The returning value of the resulting `creationCode`
      @return creationCode (constructor) for new contract
    */
    function creationCodeFor(bytes memory _code) internal pure returns (bytes memory) {
        /*
          0x00    0x63         0x63XXXXXX  PUSH4 _code.length  size
          0x01    0x80         0x80        DUP1                size size
          0x02    0x60         0x600e      PUSH1 14            14 size size
          0x03    0x60         0x6000      PUSH1 00            0 14 size size
          0x04    0x39         0x39        CODECOPY            size
          0x05    0x60         0x6000      PUSH1 00            0 size
          0x06    0xf3         0xf3        RETURN
          <CODE>
        */

        return abi.encodePacked(
            hex"63",
            uint32(_code.length),
            hex"80_60_0E_60_00_39_60_00_F3",
            _code
        );
    }

    /**
      @notice Returns the size of the code on a given address
      @param _addr Address that may or may not contain code
      @return size of the code on the given `_addr`
    */
    function codeSize(address _addr) internal view returns (uint256 size) {
        assembly { size := extcodesize(_addr) }
    }

    /**
      @notice Returns the code of a given address
      @dev It will fail if `_end < _start`
      @param _addr Address that may or may not contain code
      @param _start number of bytes of code to skip on read
      @param _end index before which to end extraction
      @return oCode read from `_addr` deployed bytecode
      Forked from: https://gist.github.com/KardanovIR/fe98661df9338c842b4a30306d507fbd
    */
    function codeAt(address _addr, uint256 _start, uint256 _end) internal view returns (bytes memory oCode) {
        uint256 csize = codeSize(_addr);
        if (csize == 0) return bytes("");

        if (_start > csize) return bytes("");
        if (_end < _start) revert InvalidCodeAtRange(csize, _start, _end);

    unchecked {
        uint256 reqSize = _end - _start;
        uint256 maxSize = csize - _start;

        uint256 size = maxSize < reqSize ? maxSize : reqSize;

        assembly {
        // allocate output byte array - this could also be done without assembly
        // by using o_code = new bytes(size)
            oCode := mload(0x40)
        // new "memory end" including padding
            mstore(0x40, add(oCode, and(add(add(size, 0x20), 0x1f), not(0x1f))))
        // store length in memory
            mstore(oCode, size)
        // actually retrieve the code, this needs assembly
            extcodecopy(_addr, add(oCode, 0x20), _start, size)
        }
    }
    }
}

File 3 of 19 : Trigonometry.sol
//"SPDX-License-Identifier: BSD3
/**
 * Basic trigonometry functions
 *
 * Solidity library offering the functionality of basic trigonometry functions
 * with both input and output being integer approximated.
 *
 * This is useful since:
 * - At the moment no floating/fixed point math can happen in solidity
 * - Should be (?) cheaper than the actual operations using floating point
 *   if and when they are implemented.
 *
 * The implementation is based off Dave Dribin's trigint C library
 * http://www.dribin.org/dave/trigint/
 * Which in turn is based from a now deleted article which can be found in
 * the internet wayback machine:
 * http://web.archive.org/web/20120301144605/http://www.dattalo.com/technical/software/pic/picsine.html
 *
 * @author Lefteris Karapetsas
 * @license BSD3
 */
pragma solidity ^0.8.4;

library Trigonometry {

    // Table index into the trigonometric table
    uint constant INDEX_WIDTH = 4;
    // Interpolation between successive entries in the tables
    uint constant INTERP_WIDTH = 8;
    uint constant INDEX_OFFSET = 12 - INDEX_WIDTH;
    uint constant INTERP_OFFSET = INDEX_OFFSET - INTERP_WIDTH;
    uint16 constant ANGLES_IN_CYCLE = 16384;
    uint16 constant QUADRANT_HIGH_MASK = 8192;
    uint16 constant QUADRANT_LOW_MASK = 4096;
    uint constant SINE_TABLE_SIZE = 16;

    // constant sine lookup table generated by gen_tables.py
    // We have no other choice but this since constant arrays don't yet exist
    uint8 constant entry_bytes = 2;
    bytes constant sin_table = "\x00\x00\x0c\x8c\x18\xf9\x25\x28\x30\xfb\x3c\x56\x47\x1c\x51\x33\x5a\x82\x62\xf1\x6a\x6d\x70\xe2\x76\x41\x7a\x7c\x7d\x89\x7f\x61\x7f\xff";

    /**
     * Convenience function to apply a mask on an integer to extract a certain
     * number of bits. Using exponents since solidity still does not support
     * shifting.
     *
     * @param _value The integer whose bits we want to get
     * @param _width The width of the bits (in bits) we want to extract
     * @param _offset The offset of the bits (in bits) we want to extract
     * @return An integer containing _width bits of _value starting at the
     *         _offset bit
     */
    function bits(uint _value, uint _width, uint _offset) pure internal returns (uint) {
        return (_value / (2 ** _offset)) & (((2 ** _width)) - 1);
    }

    function sin_table_lookup(uint index) pure internal returns (uint16) {
        bytes memory table = sin_table;
        uint offset = (index + 1) * entry_bytes;
        uint16 trigint_value;
        assembly {
            trigint_value := mload(add(table, offset))
        }

        return trigint_value;
    }

    /**
     * Return the sine of an integer approximated angle as a signed 16-bit
     * integer.
     *
     * @param _angle A 14-bit angle. This divides the circle into 16384
     *               angle units, instead of the standard 360 degrees.
     * @return The sine result as a number in the range -32767 to 32767.
     */
    function sin(uint16 _angle) internal pure returns (int) {
        uint interp = bits(_angle, INTERP_WIDTH, INTERP_OFFSET);
        uint index = bits(_angle, INDEX_WIDTH, INDEX_OFFSET);

        bool is_odd_quadrant = (_angle & QUADRANT_LOW_MASK) == 0;
        bool is_negative_quadrant = (_angle & QUADRANT_HIGH_MASK) != 0;

        if (!is_odd_quadrant) {
            index = SINE_TABLE_SIZE - 1 - index;
        }

        uint x1 = sin_table_lookup(index);
        uint x2 = sin_table_lookup(index + 1);
        uint approximation = ((x2 - x1) * interp) / (2 ** INTERP_WIDTH);

        int sine;
        if (is_odd_quadrant) {
            sine = int(x1) + int(approximation);
        } else {
            sine = int(x2) - int(approximation);
        }

        if (is_negative_quadrant) {
            sine *= -1;
        }

        return sine;
    }

    /**
     * Return the cos of an integer approximated angle.
     * It functions just like the sin() method but uses the trigonometric
     * identity sin(x + pi/2) = cos(x) to quickly calculate the cos.
     */
    function cos(uint16 _angle) internal pure returns (int) {
        _angle = (_angle + QUADRANT_LOW_MASK) % ANGLES_IN_CYCLE;

        return sin(_angle);
    }
}

File 4 of 19 : SSTORE2.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./utils/Bytecode.sol";

/**
  @title A key-value storage with auto-generated keys for storing chunks of data with a lower write & read cost.
  @author Agustin Aguilar <[email protected]>
  Readme: https://github.com/0xsequence/sstore2#readme
*/
library SSTORE2 {
    error WriteError();

    /**
      @notice Stores `_data` and returns `pointer` as key for later retrieval
      @dev The pointer is a contract address with `_data` as code
      @param _data to be written
      @return pointer Pointer to the written `_data`
    */
    function write(bytes memory _data) internal returns (address pointer) {
        // Append 00 to _data so contract can't be called
        // Build init code
        bytes memory code = Bytecode.creationCodeFor(
            abi.encodePacked(
                hex'00',
                _data
            )
        );

        // Deploy contract using create
        assembly { pointer := create(0, add(code, 32), mload(code)) }

        // Address MUST be non-zero
        if (pointer == address(0)) revert WriteError();
    }

    /**
      @notice Reads the contents of the `_pointer` code as data, skips the first byte
      @dev The function is intended for reading pointers generated by `write`
      @param _pointer to be read
      @return data read from `_pointer` contract
    */
    function read(address _pointer) internal view returns (bytes memory) {
        return Bytecode.codeAt(_pointer, 1, type(uint256).max);
    }

    /**
      @notice Reads the contents of the `_pointer` code as data, skips the first byte
      @dev The function is intended for reading pointers generated by `write`
      @param _pointer to be read
      @param _start number of bytes to skip
      @return data read from `_pointer` contract
    */
    function read(address _pointer, uint256 _start) internal view returns (bytes memory) {
        return Bytecode.codeAt(_pointer, _start + 1, type(uint256).max);
    }

    /**
      @notice Reads the contents of the `_pointer` code as data, skips the first byte
      @dev The function is intended for reading pointers generated by `write`
      @param _pointer to be read
      @param _start number of bytes to skip
      @param _end index before which to end extraction
      @return data read from `_pointer` contract
    */
    function read(address _pointer, uint256 _start, uint256 _end) internal view returns (bytes memory) {
        return Bytecode.codeAt(_pointer, _start + 1, _end + 1);
    }
}

File 5 of 19 : PolyRenderer.sol
//"SPDX-License-Identifier: GPL-3.0

/*******************************************
              _                       _
             | |                     | |
  _ __   ___ | |_   _ ___   __ _ _ __| |_
 | '_ \ / _ \| | | | / __| / _` | '__| __|
 | |_) | (_) | | |_| \__ \| (_| | |  | |_
 | .__/ \___/|_|\__, |___(_)__,_|_|   \__|
 | |             __/ |
 |_|            |___/
 a homage to math, geometry and cryptography.
********************************************/

pragma solidity ^0.8.4;

import "./Trigonometry.sol";
import "./Fixed.sol";


library PolyRenderer {
    using Trigonometry for uint16;
    using Fixed for int64;

    struct Polygon {
        uint8 sides;
        uint8 color;
        uint64 size;
        uint16 rotation;
        uint64 top;
        uint64 left;
        uint64 opacity;
    }

    struct Circle {
        uint8 color;
        uint64 radius;
        uint64 c_y;
        uint64 c_x;
        uint64 opacity;
    }

    function svgOf(bytes calldata data, bool isCircle) external pure returns (string memory){
        // initialise svg
        string memory svg = '<svg width="256" height="256" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">';

        // fill it with the background colour
        string memory bgColor = string(abi.encodePacked("rgb(", uint2str(uint8(data[0]), 0, 1), ",", uint2str(uint8(data[1]), 0, 1), ",", uint2str(uint8(data[2]), 0, 1), ")"));
        svg = string(abi.encodePacked(svg, '<rect width="256" height="256" fill="', bgColor, '"/>'));

        // load Palette
        string[4] memory colors;
        for (uint8 i = 0; i < 4; i++) {
            colors[i] = string(abi.encodePacked(uint2str(uint8(data[3 + i * 3]), 0, 1), ",", uint2str(uint8(data[4 + i * 3]), 0, 1), ",", uint2str(uint8(data[5 + i * 3]), 0, 1), ","));
        }

        // Fill it with Polygons or Circles
        uint polygons = (data.length - 15) / 5;
        string memory poly = '';
        Polygon memory polygon;
        for (uint i = 0; i < polygons; i++) {
            polygon = polygonFromBytes(data[15 + i * 5 : 15 + (i + 1) * 5]);
            poly = string(abi.encodePacked(poly,
                isCircle
                ? renderCircle(polygon, colors)
                : renderPolygon(polygon, colors))
            );
        }
        return string(abi.encodePacked(svg, poly, '</svg>'));
    }

    function attributesOf(bytes calldata data, bool isCircle) external pure returns (string memory){
        uint elements = (data.length - 15) / 5;
        if (isCircle) {
            return string(abi.encodePacked('[{"trait_type":"Circles","value":', uint2str(elements, 0, 1), '}]'));
        }
        string[4] memory types = ["Triangles", "Squares", "Pentagons", "Hexagons"];
        uint256[4] memory sides_count;
        for (uint i = 0; i < elements; i++) {
            sides_count[uint8(data[15 + i * 5] >> 6)]++;
        }
        string memory result = '[';
        string memory last;
        for (uint i = 0; i < 4; i++) {
            last = i == 3 ? '}' : '},';
            result = string(abi.encodePacked(result, '{"trait_type":"', types[i], '","value":',
                uint2str(sides_count[i], 0, 1), last));
        }
        return string(abi.encodePacked(result, ']'));
    }

    function renderCircle(Polygon memory polygon, string[4] memory colors) internal pure returns (string memory){
        int64 radius = getRadius(polygon.sides, polygon.size);
        return string(abi.encodePacked('<circle cx="', fixedToString(int64(polygon.left).toFixed(), 1), '" cy="',
            fixedToString(int64(polygon.top).toFixed(), 1), '" r="', fixedToString(radius, 1), '" style="fill:rgba(',
            colors[polygon.color], opacityToString(polygon.opacity), ')"/>'));
    }

    function opacityToString(uint64 opacity) internal pure returns (string memory) {
        return opacity == 31
        ? '1'
        : string(abi.encodePacked('0.', uint2str(uint64(int64(opacity).div(31).fractionPart()), 5, 1)));
    }

    function polygonFromBytes(bytes calldata data) internal pure returns (Polygon memory) {
        Polygon memory polygon;
        // read first two bits from the left and add 3
        polygon.sides = (uint8(data[0]) >> 6) + 3;
        // read the next two bits
        polygon.color = (uint8(data[0]) >> 4) & 3;
        // read the next 5 bits
        polygon.opacity = ((uint8(data[0]) % 16) << 1) + (uint8(data[1]) >> 7);
        // read the last 7 bits.
        polygon.rotation = uint8(data[1]) % 128;
        polygon.top = uint8(data[2]);
        polygon.left = uint8(data[3]);
        polygon.size = uint64(uint8(data[4])) + 1;
        return polygon;
    }

    function renderPolygon(Polygon memory polygon, string[4] memory colors) internal pure returns (string memory){
        int64[] memory points = getVertices(polygon);

        int64 v;
        int8 sign;
        string memory last;
        string memory result = '<polygon points="';
        for (uint j = 0; j < points.length; j++) {
            v = points[j];
            sign = v < 0 ? - 1 : int8(1);
            last = j == points.length - 1 ? '" style="fill:rgba(' : ",";
            result = string(abi.encodePacked(result, fixedToString(v, sign), last));
        }
        return string(abi.encodePacked(result, colors[polygon.color], opacityToString(polygon.opacity), ')"/>'));
    }

    function fixedToString(int64 fPoint, int8 sign) internal pure returns (bytes memory){
        return abi.encodePacked(uint2str(uint64(sign * fPoint.wholePart()), 0, sign), ".",
            uint2str(uint64(fPoint.fractionPart()), 5, 1));
    }

    function getRotationVector(uint16 angle) internal pure returns (int64[2] memory){
        // returns [cos(angle), -sin(angle)]
        return [
            int64(angle.cos()).div(32767), //-32767 to 32767.
            int64(-angle.sin()).div(32767)
        ];
    }

    function rotate(int64[2] memory R, int64[2] memory pos) internal pure returns (int64[2] memory){
        // R = [cos(angle), -sin(angle)]
        // rotation_matrix = [[cos(angle), -sin(angle)], [sin(angle), cos(angle)]]
        // this function returns rotation_matrix.dot(pos)
        int64[2] memory result;
        result[0] = R[0].mul(pos[0]) + R[1].mul(pos[1]);
        result[1] = - R[1].mul(pos[0]) + R[0].mul(pos[1]);
        return result;
    }

    function vectorSum(int64[2] memory a, int64[2] memory b) internal pure returns (int64[2] memory){
        return [a[0] + b[0], a[1] + b[1]];
    }

    function getRadius(uint8 sides, uint64 size) internal pure returns (int64){
        // the radius of the circumscribed circle is equal to the length of the regular poly edge divided by
        // cos(internal_angle/2).
        int64 cos_ang_2 = int64(uint64([7439101574, 6074001000, 5049036871, 4294967296][sides - 3]));
        return int64(size).toFixed().div(cos_ang_2);
    }

    function getVertices(Polygon memory polygon) internal pure returns (int64[] memory) {
        int64[] memory result = new int64[](2 * polygon.sides);
        uint16 internalAngle = [1365, 2048, 2458, 2731][polygon.sides - 3]; // Note: 16384 is 2pi
        uint16 angle = [5461, 4096, 3277, 2731][polygon.sides - 3]; // 16384/sides
        int64 radius = getRadius(polygon.sides, polygon.size);

        // We map our rotation that goes from [0, 128[, to [0, 16384/sides[. 16384 is 2pi on the Trigonometry package.
        // We say 128 = 16384/sides because if you rotate a regular polygon by 2pi/number_of_sides it will be exactly the
        // same as rotating it by 2pi (due to the symmetries of regular polys).
        // We gain more precision by taking advantage of these symmetries.

        uint16 rotation = uint16((polygon.rotation << 7) / polygon.sides + internalAngle);

        int64[2] memory R = getRotationVector(rotation);
        int64[2] memory vector = rotate(R, [radius, 0]);
        int64[2] memory center = [int64(polygon.left).toFixed(), int64(polygon.top).toFixed()];
        int64[2] memory pos = vectorSum(center, vector);
        result[0] = pos[0];
        result[1] = pos[1];
        R = getRotationVector(angle);
        for (uint8 i = 0; i < polygon.sides - 1; i++) {
            vector = rotate(R, vector);
            pos = vectorSum(center, vector);
            result[(i + 1) * 2] = pos[0];
            result[(i + 1) * 2 + 1] = pos[1];
        }
        return result;
    }

    function uint2str(uint _i, uint8 zero_padding, int8 sign) internal pure returns (string memory str) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint length;
        while (j != 0) {
            length++;
            j /= 10;
        }
        bytes memory bstr = new bytes(length);
        uint k = length;
        j = _i;
        while (j != 0) {
            bstr[--k] = bytes1(uint8(48 + j % 10));
            j /= 10;
        }
        if ((zero_padding > 0) && (zero_padding > length)) {
            uint pad_length = zero_padding - length;
            bytes memory pad = new bytes(pad_length);
            k = 0;
            while (k < pad_length) {
                pad[k++] = bytes1(uint8(48));
            }
            bstr = abi.encodePacked(pad, bstr);
        }
        if (sign < 0) {
            return string(abi.encodePacked("-", bstr));
        } else {
            return string(bstr);
        }
    }
}

File 6 of 19 : Fixed.sol
// SPDX-License-Identifier: MIT
/*******************************************
              _                       _
             | |                     | |
  _ __   ___ | |_   _ ___   __ _ _ __| |_
 | '_ \ / _ \| | | | / __| / _` | '__| __|
 | |_) | (_) | | |_| \__ \| (_| | |  | |_
 | .__/ \___/|_|\__, |___(_)__,_|_|   \__|
 | |             __/ |
 |_|            |___/

 a homage to math, geometry and cryptography.
********************************************/
pragma solidity ^0.8.4;


library Fixed {
    uint8 constant scale = 32;

    function toFixed(int64 i) internal pure returns (int64){
        return i << scale;
    }

    function toInt(int64 f) internal pure returns (int64){
        return f >> scale;
    }

    /// @notice outputs the first 5 decimal places
    function fractionPart(int64 f) internal pure returns (int64){
        int8 sign = f < 0 ? - 1 : int8(1);
        // zero out the digits before the comma
        int64 fraction = (sign * f) & 2 ** 32 - 1;
        // Get the first 5 decimals
        return int64(int128(fraction) * 1e5 >> scale);
    }

    function wholePart(int64 f) internal pure returns (int64){
        return f >> scale;
    }

    function mul(int64 a, int64 b) internal pure returns (int64) {
        return int64(int128(a) * int128(b) >> scale);
    }

    function div(int64 a, int64 b) internal pure returns (int64){
        return int64((int128(a) << scale) / b);
    }
}

File 7 of 19 : Base64.sol
pragma solidity ^0.8.4;

/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>

// SPDX-License-Identifier: MIT
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
}

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

pragma solidity ^0.8.0;

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

File 9 of 19 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 10 of 19 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 12 of 19 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 13 of 19 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 19 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 15 of 19 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 17 of 19 : ERC721.sol
// SPDX-License-Identifier: MIT

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: balance query for the zero address");
        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: owner query for nonexistent token");
        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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 overriden 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

    /**
     * @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: transfer caller is not 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: transfer caller is not 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) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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);
    }

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

    /**
     * @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 of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @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 {
                    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 {}
}

File 18 of 19 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract 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 make 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 19 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 2000
  },
  "evmVersion": "istanbul",
  "libraries": {
    "/contracts/PolyRenderer.sol": {
      "PolyRenderer": "0x44A2B58082cb8436AC2abbbFdb2032f4EA0fa815"
    }
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"openSeaProxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"_size","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"InvalidCodeAtRange","type":"error"},{"inputs":[],"name":"WriteError","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"AuctionStarted","type":"event"},{"anonymous":false,"inputs":[],"name":"BreedingStarted","type":"event"},{"anonymous":false,"inputs":[],"name":"CirclingStarted","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"alsoShowAnimationUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"alsoShowOffChainVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"auctionStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"availableBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"polyId","type":"uint256"}],"name":"creatorNameOf","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"polyId","type":"uint256"}],"name":"creatorOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBreedingSeason","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isCirclingSeason","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"polyData","type":"bytes"},{"internalType":"string","name":"name","type":"string"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"creator","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"polyId","type":"uint256"}],"name":"mintCircle","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numMintedOriginals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"polyIdA","type":"uint256"},{"internalType":"uint256","name":"polyIdB","type":"uint256"}],"name":"pairIsTaken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"circleId","type":"uint256"}],"name":"parentOfCircle","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mixId","type":"uint256"}],"name":"parentsOfMix","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"polyIdA","type":"uint256"},{"internalType":"uint256","name":"polyIdB","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"preSaleOffspring","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"polyIdA","type":"uint256"},{"internalType":"uint256","name":"polyIdB","type":"uint256"}],"name":"publicSaleOffspring","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUrl","type":"string"}],"name":"setBaseUrl","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"}],"name":"signPieces","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBreedingSeason","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startCirclingSeason","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":"polyId","type":"uint256"}],"name":"tokenDataOf","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"polyId","type":"uint256"}],"name":"tokenIsCircle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"polyId","type":"uint256"}],"name":"tokenIsOriginal","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenMetadata","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"address","name":"creator","type":"address"},{"internalType":"uint8","name":"remainingChildren","type":"uint8"},{"internalType":"bool","name":"wasCircled","type":"bool"},{"internalType":"enum Polys.TokenType","name":"tokenType","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"polyId","type":"uint256"}],"name":"tokenNameOf","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"polyId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600d805460ff60a01b1916600160a01b17905560c0604052601760808190527f68747470733a2f2f706f6c79732e6172742f706f6c792f00000000000000000060a09081526200005391600e91906200016e565b503480156200006157600080fd5b506040516200563438038062005634833981016040819052620000849162000214565b6040805180820182526005815264506f6c797360d81b602080830191825283518085019094526004845263504f4c5960e01b908401528151919291620000cd916000916200016e565b508051620000e39060019060208401906200016e565b5050600160065550620000f6336200011c565b600d80546001600160a01b0319166001600160a01b039290921691909117905562000281565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017c9062000244565b90600052602060002090601f016020900481019282620001a05760008555620001eb565b82601f10620001bb57805160ff1916838001178555620001eb565b82800160010185558215620001eb579182015b82811115620001eb578251825591602001919060010190620001ce565b50620001f9929150620001fd565b5090565b5b80821115620001f95760008155600101620001fe565b60006020828403121562000226578081fd5b81516001600160a01b03811681146200023d578182fd5b9392505050565b600181811c908216806200025957607f821691505b602082108114156200027b57634e487b7160e01b600052602260045260246000fd5b50919050565b6153a380620002916000396000f3fe6080604052600436106102f25760003560e01c806395d89b411161018f578063bc04666b116100e1578063e324c6641161008a578063e985e9c511610064578063e985e9c514610817578063eb54f9ec14610837578063f2fde38b1461084d57600080fd5b8063e324c664146107bf578063e365ff9c146107df578063e43082f7146107f757600080fd5b8063c87b56dd116100bb578063c87b56dd14610757578063cd9a4cfa14610777578063d2e00d5c1461078a57600080fd5b8063bc04666b146106f7578063c0da9bcd14610717578063c7c3268b1461073757600080fd5b8063a0821be311610143578063b26464041161011d578063b2646404146106a4578063b39cb39d146106b7578063b88d4fde146106d757600080fd5b8063a0821be31461063d578063a22cb4651461066a578063ad2863b31461068a57600080fd5b8063968f156311610174578063968f1563146105f35780639f6b040b14610608578063a035b1fe1461062857600080fd5b806395d89b41146105cb578063963ef77d146105e057600080fd5b80635188bdf91161024857806368ff3273116101fc57806370a08231116101d657806370a0823114610578578063715018a6146105985780638da5cb5b146105ad57600080fd5b806368ff3273146105125780636914db60146105325780636b64c7691461056357600080fd5b8063589a17431161022d578063589a1743146104b25780635d2bcb45146104d25780636352211e146104f257600080fd5b80635188bdf91461048a57806355a339a81461049d57600080fd5b806323b872dd116102aa57806342842e0e1161028457806342842e0e1461041c5780634b97a6001461043c5780634d69563b1461045c57600080fd5b806323b872dd146103c75780633ccfd60b146103e75780634052161d146103fc57600080fd5b8063081812fc116102db578063081812fc1461034e578063095ea7b31461038657806310cdafcd146103a857600080fd5b806301ffc9a7146102f757806306fdde031461032c575b600080fd5b34801561030357600080fd5b50610317610312366004614793565b61086d565b60405190151581526020015b60405180910390f35b34801561033857600080fd5b50610341610952565b6040516103239190614fef565b34801561035a57600080fd5b5061036e61036936600461494e565b6109e4565b6040516001600160a01b039091168152602001610323565b34801561039257600080fd5b506103a66103a136600461474e565b610a8f565b005b3480156103b457600080fd5b5060095461031790610100900460ff1681565b3480156103d357600080fd5b506103a66103e2366004614633565b610bc1565b3480156103f357600080fd5b506103a6610c48565b34801561040857600080fd5b506103a6610417366004614779565b610d54565b34801561042857600080fd5b506103a6610437366004614633565b610de7565b34801561044857600080fd5b506103a6610457366004614779565b610e02565b34801561046857600080fd5b5061047c61047736600461494e565b610e95565b604051908152602001610323565b6103a66104983660046147cb565b610ef7565b3480156104a957600080fd5b506103a661158f565b3480156104be57600080fd5b5061036e6104cd36600461494e565b611621565b3480156104de57600080fd5b506103416104ed36600461494e565b61168d565b3480156104fe57600080fd5b5061036e61050d36600461494e565b61174c565b34801561051e57600080fd5b5061031761052d36600461494e565b6117d7565b34801561053e57600080fd5b5061055261054d36600461494e565b61181c565b604051610323959493929190615026565b34801561056f57600080fd5b506103a66118fd565b34801561058457600080fd5b5061047c6105933660046145df565b61199f565b3480156105a457600080fd5b506103a6611a39565b3480156105b957600080fd5b506007546001600160a01b031661036e565b3480156105d757600080fd5b50610341611a9f565b6103a66105ee366004614966565b611aae565b3480156105ff57600080fd5b506103a6611b62565b34801561061457600080fd5b5061031761062336600461494e565b611c13565b34801561063457600080fd5b5061047c611c3c565b34801561064957600080fd5b5061047c6106583660046145df565b600a6020526000908152604090205481565b34801561067657600080fd5b506103a661068536600461471a565b611cfd565b34801561069657600080fd5b506009546103179060ff1681565b6103a66106b2366004614987565b611dc2565b3480156106c357600080fd5b506103a66106d236600461489b565b611f41565b3480156106e357600080fd5b506103a66106f2366004614673565b611f68565b34801561070357600080fd5b50610317610712366004614966565b611ff6565b34801561072357600080fd5b5061034161073236600461494e565b612045565b34801561074357600080fd5b506103a661075236600461489b565b6123e1565b34801561076357600080fd5b5061034161077236600461494e565b612447565b6103a661078536600461494e565b612746565b34801561079657600080fd5b506107aa6107a536600461494e565b612a88565b60408051928352602083019190915201610323565b3480156107cb57600080fd5b506103416107da36600461494e565b612ad3565b3480156107eb57600080fd5b50600b5460ff1661047c565b34801561080357600080fd5b506103a6610812366004614779565b612c20565b34801561082357600080fd5b506103176108323660046145fb565b612cb3565b34801561084357600080fd5b5061047c60085481565b34801561085957600080fd5b506103a66108683660046145df565b612db8565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061090057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061094c57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461096190615224565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90615224565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a9a8261174c565b9050806001600160a01b0316836001600160a01b03161415610b245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a6a565b336001600160a01b0382161480610b405750610b408133612cb3565b610bb25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a6a565b610bbc8383612e9a565b505050565b610bcb3382612f15565b610c3d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a6a565b610bbc838383612ff5565b60026006541415610c9b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6a565b6002600655336000818152600a6020526040808220805490839055905190929083908381818185875af1925050503d8060008114610cf5576040519150601f19603f3d011682016040523d82523d6000602084013e610cfa565b606091505b5050905080610d4b5760405162461bcd60e51b815260206004820152600260248201527f31320000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b50506001600655565b6007546001600160a01b03163314610dae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b60078054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b610bbc83838360405180602001604052806000815250611f68565b6007546001600160a01b03163314610e5c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b60078054911515600160a81b027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000610ea0826117d7565b610eec5760405162461bcd60e51b815260206004820152600260248201527f31340000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b61094c6064836151a1565b60026006541415610f4a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6a565b600260065560648411801590610f605750600084115b610fac5760405162461bcd60e51b815260206004820152600160248201527f31000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b610fe0888888888888604051602001610fca96959493929190614a9c565b60405160208183030381529060405283836131cf565b61102c5760405162461bcd60e51b815260206004820152600160248201527f32000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b60138711801561103d575061016e87105b6110895760405162461bcd60e51b815260206004820152600160248201527f33000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b611094600588615294565b156110e15760405162461bcd60e51b815260206004820152600160248201527f34000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b84158015906110f05750600b85105b61113c5760405162461bcd60e51b815260206004820152600160248201527f35000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b60085461118b5760405162461bcd60e51b815260206004820152600260248201527f31330000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b336001600160a01b0384161461126f576111a3611c3c565b3410156111d65760405162461bcd60e51b81526020600482015260016024820152601b60f91b6044820152606401610a6a565b60006111e3600a34615145565b905080600a60006111fc6007546001600160a01b031690565b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461122b9190615108565b9091555061123b905081346151a1565b6001600160a01b0385166000908152600a602052604081208054909190611263908490615108565b90915550611314915050565b6007546001600160a01b0316331461131457600a61128b611c3c565b6112959190615145565b3410156112c85760405162461bcd60e51b81526020600482015260016024820152601b60f91b6044820152606401610a6a565b34600a60006112df6007546001600160a01b031690565b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461130e9190615108565b90915550505b6113436040805160a0810182526060808252600060208301819052928201839052810182905290608082015290565b86868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250938552505060106040840152506001600160a01b03851660208301526080820181815250506113d989898080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061329792505050565b6000868152601060209081526040808320805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039590951694909417909355600f815291902082518051849361143192849291019061447d565b506020820151600182018054604085015160608601511515600160a81b027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff60ff909216600160a01b027fffffffffffffffffffffff0000000000000000000000000000000000000000009093166001600160a01b039095169490941791909117908116831782556080850151927fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff9091161776010000000000000000000000000000000000000000000083600281111561153e57634e487b7160e01b600052602160045260246000fd5b021790555050600b80546001925060009061155d90849060ff16615120565b92506101000a81548160ff021916908360ff16021790555061157f3386613315565b5050600160065550505050505050565b6007546001600160a01b031633146115e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b6009805460ff191660011790556040517f7b32beb1cfe463f0e87a98a4ce7f88541d676101df00ca38f0badd3ea908172990600090a1565b60008061162d83611c13565b1561163957508161166c565b611642836117d7565b156116575761165083610e95565b905061166c565b5060008281526012602052604090205461ffff165b6000908152600f60205260409020600101546001600160a01b031692915050565b60606011600061169c84611621565b6001600160a01b03166001600160a01b0316815260200190815260200160002080546116c790615224565b80601f01602080910402602001604051908101604052809291908181526020018280546116f390615224565b80156117405780601f1061171557610100808354040283529160200191611740565b820191906000526020600020905b81548152906001019060200180831161172357829003601f168201915b50505050509050919050565b6000818152600260205260408120546001600160a01b03168061094c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a6a565b6000818152600260205260408120546001600160a01b0316151580156117fd5750606482115b801561094c575061181060646002615178565b60ff1682111592915050565b600f6020526000908152604090208054819061183790615224565b80601f016020809104026020016040519081016040528092919081815260200182805461186390615224565b80156118b05780601f10611885576101008083540402835291602001916118b0565b820191906000526020600020905b81548152906001019060200180831161189357829003601f168201915b505050600190930154919250506001600160a01b0381169060ff600160a01b8204811691600160a81b81048216917601000000000000000000000000000000000000000000009091041685565b6007546001600160a01b031633146119575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b6008541561196457600080fd5b4260088190556040519081527f1bb96dff6ab5005aff98cdc0cf176bb7d8e0423cb48e02217d35b042cec81e9f9060200160405180910390a1565b60006001600160a01b038216611a1d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a6a565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314611a935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b611a9d6000613464565b565b60606001805461096190615224565b60026006541415611b015760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6a565b600260065560095460ff16611b585760405162461bcd60e51b815260206004820152600260248201527f31310000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b610d4b82826134c3565b6007546001600160a01b03163314611bbc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790556040517f32911e1b67bc7ec569317567ae670ec3ed6602311a8314ba1f495e6c3f34c7d890600090a1565b6000818152600260205260408120546001600160a01b03161515801561094c5750506064101590565b6000600854421015611c4d57600080fd5b600060085442611c5d91906151a1565b905062015180811115611c79576703782dace9d9000091505090565b6000611c8761384083615145565b905067de0b6b3a76400000811c6000611ca1836001615108565b67de0b6b3a76400000901c9050611cba61384085615294565b9350613840611cc98286615159565b83611cd6876138406151a1565b611ce09190615159565b611cea9190615108565b611cf49190615145565b94505050505090565b6001600160a01b038216331415611d565760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a6a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026006541415611e155760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6a565b600260065533600090815260146020526040902054600460ff90911610611e7e5760405162461bcd60e51b815260206004820152600260248201527f31300000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b6040516bffffffffffffffffffffffff193360601b166020820152611ea590603401610fca565b611ef15760405162461bcd60e51b815260206004820152600160248201527f32000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b336000908152601460205260408120805460019290611f1490849060ff16615120565b92506101000a81548160ff021916908360ff160217905550611f3684846134c3565b505060016006555050565b60108110611f4e57600080fd5b336000908152601160205260409020610bbc908383614501565b611f723383612f15565b611fe45760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a6a565b611ff084848484613923565b50505050565b6000808383604051602001612015929190918252602082015260400190565b60408051808303601f1901815291815281516020928301206000908152601390925290205460ff16949350505050565b606061205082611c13565b156120765760008281526010602052604090205461094c906001600160a01b03166139ac565b61207f826117d7565b156120b35761094c6010600061209485610e95565b81526020810191909152604001600020546001600160a01b03166139ac565b60008281526012602090815260408083205461ffff16835260109091528120546120e5906001600160a01b03166139ac565b60008481526012602090815260408083205462010000900461ffff168352601090915281205491925090612121906001600160a01b03166139ac565b905060008260038151811061214657634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b6001600160f81b0319168360008151811061217c57634e487b7160e01b600052603260045260246000fd5b01602001517fff000000000000000000000000000000000000000000000000000000000000001614801561222b5750826004815181106121cc57634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b6001600160f81b0319168360018151811061220257634e487b7160e01b600052603260045260246000fd5b01602001517fff0000000000000000000000000000000000000000000000000000000000000016145b80156122b257508260058151811061225357634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b6001600160f81b0319168360028151811061228957634e487b7160e01b600052603260045260246000fd5b01602001517fff0000000000000000000000000000000000000000000000000000000000000016145b905060005b600f8160ff1610156123d7578180156122d3575060028160ff16115b80156122e2575060068160ff16105b1561235e57826122f36003836151b8565b60ff168151811061231457634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b848260ff168151811061234257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506123c7565b828160ff168151811061238157634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b848260ff16815181106123af57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053505b6123d081615274565b90506122b7565b5091949350505050565b6007546001600160a01b0316331461243b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b610bbc600e8383614501565b6000818152600260205260409020546060906001600160a01b03166124ae5760405162461bcd60e51b815260206004820152600260248201527f31350000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b60006124b983612045565b905060006124c6846117d7565b905060006124d3856139bc565b905060007344a2b58082cb8436ac2abbbfdb2032f4ea0fa81563f3377f1c85856040518363ffffffff1660e01b8152600401612510929190615002565b60006040518083038186803b15801561252857600080fd5b505af415801561253c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261256491908101906148db565b9050600061257182613af2565b6040516020016125819190614f6e565b60408051808303601f19018152919052600754909150600160a01b900460ff16156125d25780600e846040516020016125bc93929190614b78565b60405160208183030381529060405290506125f5565b806040516020016125e39190614ccc565b60405160208183030381529060405290505b600754600160a81b900460ff161561262f57600e838260405160200161261d93929190614d11565b60405160208183030381529060405290505b60006127178461263e8a612ad3565b61264788613cbb565b6040517f013638ad00000000000000000000000000000000000000000000000000000000815286907344a2b58082cb8436ac2abbbfdb2032f4ea0fa8159063013638ad9061269b908e908e90600401615002565b60006040518083038186803b1580156126b357600080fd5b505af41580156126c7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526126ef91908101906148db565b604051602001612703959493929190614e2e565b604051602081830303815290604052613af2565b90508060405160200161272a9190614de9565b6040516020818303038152906040529650505050505050919050565b600260065414156127995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6a565b6002600655600954610100900460ff166127f55760405162461bcd60e51b815260206004820152600160248201527f37000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b6127fe81611c13565b61284a5760405162461bcd60e51b815260206004820152600160248201527f38000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b6000818152600f6020526040902060010154600160a81b900460ff16156128b35760405162461bcd60e51b815260206004820152600160248201527f39000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b3467045b8d561b790000146128ee5760405162461bcd60e51b81526020600482015260016024820152601b60f91b6044820152606401610a6a565b336000908152600c602052604090205460051161290a57600080fd5b336000908152600c6020526040812080546001929061292a908490615108565b909155506000905061293d826064615108565b6000838152600f6020526040902060010180547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16600160a81b17905590506129863382613d49565b67037c7111af940000600a600061299c85611621565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546129cb9190615108565b90915550666f8e2235f280009050600a60006129ef6007546001600160a01b031690565b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254612a1e9190615108565b909155505073e00327f0f5f5f55d01c2fc6a87dda1b8e292ac796000908152600a6020527f1396a5ee4badcc9ef6ac5fb8f603d69ca03abcb0baa28f5ec35d9c6aff2b761c8054666f8e2235f280009290612a7a908490615108565b909155505060016006555050565b600080612a9483611c13565b158015612aa75750612aa5836117d7565b155b612ab057600080fd5b505060009081526012602052604090205461ffff80821692620100009092041690565b6000818152600260205260409020546060906001600160a01b0316612b3a5760405162461bcd60e51b815260206004820152600260248201527f31350000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b612b4382611c13565b15612b61576000828152600f6020526040902080546116c790615224565b612b6a826117d7565b15612bb357600f6000612b7c84610e95565b8152602001908152602001600020600001604051602001612b9d9190614c9a565b6040516020818303038152906040529050919050565b600082815260126020908152604080832081518083018352905461ffff808216808452620100009092048116838601908152918652600f855283862091511685529382902091519093612c099390929101614b3c565b604051602081830303815290604052915050919050565b6007546001600160a01b03163314612c7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b600d8054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600d546000906001600160a01b03811690600160a01b900460ff168015612d7757506040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b158015612d3457600080fd5b505afa158015612d48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d6c919061487f565b6001600160a01b0316145b15612d8657600191505061094c565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6007546001600160a01b03163314612e125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b6001600160a01b038116612e8e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a6a565b612e9781613464565b50565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612edc8261174c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612f9f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a6a565b6000612faa8361174c565b9050806001600160a01b0316846001600160a01b03161480612fe55750836001600160a01b0316612fda846109e4565b6001600160a01b0316145b80612db05750612db08185612cb3565b826001600160a01b03166130088261174c565b6001600160a01b0316146130845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a6a565b6001600160a01b0382166130ff5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a6a565b61310a600082612e9a565b6001600160a01b03831660009081526003602052604081208054600192906131339084906151a1565b90915550506001600160a01b0382166000908152600360205260408120805460019290613161908490615108565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006131e36007546001600160a01b031690565b6001600160a01b031661328384848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505088516020808b0191909120604080517f19457468657265756d205369676e6564204d6573736167653a0a33320000000081850152603c8082019390935281518082039093018352605c0190528051910120915061327d9050565b90613d67565b6001600160a01b03161490505b9392505050565b6000806132c2836040516020016132ae9190614dc4565b604051602081830303815290604052613d8b565b90508051602082016000f091506001600160a01b03821661330f576040517f08d4abb600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50919050565b6001600160a01b03821661336b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a6a565b6000818152600260205260409020546001600160a01b0316156133d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a6a565b6001600160a01b03821660009081526003602052604081208054600192906133f9908490615108565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6134cc82611c13565b80156134dc57506134dc81611c13565b6135285760405162461bcd60e51b815260206004820152600260248201527f31360000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b808214156135785760405162461bcd60e51b815260206004820152600260248201527f31370000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b6000828152600f6020526040902060010154600160a01b900460ff166135e05760405162461bcd60e51b815260206004820152600260248201527f31380000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b3467011c37937e0800001461361b5760405162461bcd60e51b81526020600482015260016024820152601b60f91b6044820152606401610a6a565b60408051602080820185905281830184905282518083038401815260609092018352815191810191909120600081815260139092529190205460ff16156136a45760405162461bcd60e51b815260206004820152600260248201527f31390000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b600b80546001919082906136c2908290610100900461ffff166150e2565b825461ffff91821661010093840a9081029083021990911617909255600b546000935004166136f360646002615178565b60ff1661370091906150e2565b60408051808201825261ffff87811682528681166020808401919091526000898152600f90915292909220600101805493909216935091600160a01b900460ff1690601461374d83615207565b825460ff9182166101009390930a9283029190920219909116179055506000828152601260209081526040808320845181548487015161ffff90811662010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000090921692169190911717905585835260139091529020805460ff191660011790556137da3383613d49565b66c6f3b40b6c0000600a60006137ef88611621565b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461381e9190615108565b90915550661c6bf5263400009050600a600061383987611621565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546138689190615108565b90915550661c6bf5263400009050600a600061388c6007546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546138bb9190615108565b909155505073e00327f0f5f5f55d01c2fc6a87dda1b8e292ac796000908152600a6020527f1396a5ee4badcc9ef6ac5fb8f603d69ca03abcb0baa28f5ec35d9c6aff2b761c8054661c6bf5263400009290613917908490615108565b90915550505050505050565b61392e848484612ff5565b61393a84848484613da1565b611ff05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a6a565b606061094c826001600019613f4e565b6060816139fc57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613a265780613a1081615259565b9150613a1f9050600a83615145565b9150613a00565b60008167ffffffffffffffff811115613a4f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613a79576020820181803683370190505b5090505b8415612db057613a8e6001836151a1565b9150613a9b600a86615294565b613aa6906030615108565b60f81b818381518110613ac957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350613aeb600a86615145565b9450613a7d565b805160609080613b12575050604080516020810190915260008152919050565b60006003613b21836002615108565b613b2b9190615145565b613b36906004615159565b90506000613b45826020615108565b67ffffffffffffffff811115613b6b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613b95576020820181803683370190505b509050600060405180606001604052806040815260200161532e604091399050600181016020830160005b86811015613c21576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101613bc0565b506003860660018114613c3b5760028114613c8557613cad565b7f3d3d0000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe830152613cad565b7f3d000000000000000000000000000000000000000000000000000000000000006000198301525b505050918152949350505050565b6060600082613cff576040518060400160405280601181526020017f22526567756c617220706f6c79676f6e73000000000000000000000000000000815250613d36565b6040518060400160405280600881526020017f22436972636c65730000000000000000000000000000000000000000000000008152505b905080604051602001612c099190614ad5565b613d63828260405180602001604052806000815250614018565b5050565b6000806000613d7685856140a1565b91509150613d8381614111565b509392505050565b6060815182604051602001612b9d929190614c03565b60006001600160a01b0384163b15613f43576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290613dfe903390899088908890600401614fb3565b602060405180830381600087803b158015613e1857600080fd5b505af1925050508015613e48575060408051601f3d908101601f19168201909252613e45918101906147af565b60015b613ef8573d808015613e76576040519150601f19603f3d011682016040523d82523d6000602084013e613e7b565b606091505b508051613ef05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a6a565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612db0565b506001949350505050565b6060833b80613f6d575050604080516020810190915260008152613290565b80841115613f8b575050604080516020810190915260008152613290565b83831015613fd6576040517f2c4a89fa000000000000000000000000000000000000000000000000000000008152600481018290526024810185905260448101849052606401610a6a565b8383038482036000828210613feb5782613fed565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b6140228383613315565b61402f6000848484613da1565b610bbc5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a6a565b6000808251604114156140d85760208301516040840151606085015160001a6140cc87828585614348565b9450945050505061410a565b82516040141561410257602083015160408401516140f7868383614435565b93509350505061410a565b506000905060025b9250929050565b600081600481111561413357634e487b7160e01b600052602160045260246000fd5b141561413c5750565b600181600481111561415e57634e487b7160e01b600052602160045260246000fd5b14156141ac5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a6a565b60028160048111156141ce57634e487b7160e01b600052602160045260246000fd5b141561421c5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a6a565b600381600481111561423e57634e487b7160e01b600052602160045260246000fd5b14156142b25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a6a565b60048160048111156142d457634e487b7160e01b600052602160045260246000fd5b1415612e975760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a6a565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561437f575060009050600361442c565b8460ff16601b1415801561439757508460ff16601c14155b156143a8575060009050600461442c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156143fc573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166144255760006001925092505061442c565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b0161446f87828885614348565b935093505050935093915050565b82805461448990615224565b90600052602060002090601f0160209004810192826144ab57600085556144f1565b82601f106144c457805160ff19168380011785556144f1565b828001600101855582156144f1579182015b828111156144f15782518255916020019190600101906144d6565b506144fd929150614575565b5090565b82805461450d90615224565b90600052602060002090601f01602090048101928261452f57600085556144f1565b82601f106145485782800160ff198235161785556144f1565b828001600101855582156144f1579182015b828111156144f157823582559160200191906001019061455a565b5b808211156144fd5760008155600101614576565b8035801515811461459a57600080fd5b919050565b60008083601f8401126145b0578182fd5b50813567ffffffffffffffff8111156145c7578182fd5b60208301915083602082850101111561410a57600080fd5b6000602082840312156145f0578081fd5b8135613290816152ea565b6000806040838503121561460d578081fd5b8235614618816152ea565b91506020830135614628816152ea565b809150509250929050565b600080600060608486031215614647578081fd5b8335614652816152ea565b92506020840135614662816152ea565b929592945050506040919091013590565b60008060008060808587031215614688578081fd5b8435614693816152ea565b935060208501356146a3816152ea565b925060408501359150606085013567ffffffffffffffff8111156146c5578182fd5b8501601f810187136146d5578182fd5b80356146e86146e3826150ba565b615089565b8181528860208385010111156146fc578384fd5b81602084016020830137908101602001929092525092959194509250565b6000806040838503121561472c578182fd5b8235614737816152ea565b91506147456020840161458a565b90509250929050565b60008060408385031215614760578182fd5b823561476b816152ea565b946020939093013593505050565b60006020828403121561478a578081fd5b6132908261458a565b6000602082840312156147a4578081fd5b8135613290816152ff565b6000602082840312156147c0578081fd5b8151613290816152ff565b60008060008060008060008060a0898b0312156147e6578384fd5b883567ffffffffffffffff808211156147fd578586fd5b6148098c838d0161459f565b909a50985060208b0135915080821115614821578586fd5b61482d8c838d0161459f565b909850965060408b0135955060608b01359150614849826152ea565b90935060808a0135908082111561485e578384fd5b5061486b8b828c0161459f565b999c989b5096995094979396929594505050565b600060208284031215614890578081fd5b8151613290816152ea565b600080602083850312156148ad578182fd5b823567ffffffffffffffff8111156148c3578283fd5b6148cf8582860161459f565b90969095509350505050565b6000602082840312156148ec578081fd5b815167ffffffffffffffff811115614902578182fd5b8201601f81018413614912578182fd5b80516149206146e3826150ba565b818152856020838501011115614934578384fd5b6149458260208301602086016151db565b95945050505050565b60006020828403121561495f578081fd5b5035919050565b60008060408385031215614978578182fd5b50508035926020909101359150565b6000806000806060858703121561499c578182fd5b8435935060208501359250604085013567ffffffffffffffff8111156149c0578283fd5b6149cc8782880161459f565b95989497509550505050565b600081518084526149f08160208601602086016151db565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680614a1e57607f831692505b6020808410821415614a3e57634e487b7160e01b86526022600452602486fd5b818015614a525760018114614a6357614a90565b60ff19861689528489019650614a90565b60008881526020902060005b86811015614a885781548b820152908501908301614a6f565b505084890196505b50505050505092915050565b858782376000868201818152858782379094019283525060601b6bffffffffffffffffffffffff19166020820152603401949350505050565b60008251614ae78184602087016151db565b7f206f6e20616e20696e66696e6974656c79207363616c61626c652063616e76619201918252507f732e2200000000000000000000000000000000000000000000000000000000006020820152602301919050565b6000614b488285614a04565b7f200000000000000000000000000000000000000000000000000000000000000081526149456001820185614a04565b7f2c22696d6167655f64617461223a220000000000000000000000000000000000815260008451614bb081600f8501602089016151db565b7f222c22696d616765223a22000000000000000000000000000000000000000000600f91840191820152614be7601a820186614a04565b90508351614bf98183602088016151db565b0195945050505050565b7f630000000000000000000000000000000000000000000000000000000000000081527fffffffff000000000000000000000000000000000000000000000000000000008360e01b1660018201527f80600e6000396000f30000000000000000000000000000000000000000000000600582015260008251614c8c81600e8501602087016151db565b91909101600e019392505050565b7f436972636c656420000000000000000000000000000000000000000000000000815260006132906008830184614a04565b7f2c22696d616765223a2200000000000000000000000000000000000000000000815260008251614d0481600a8501602087016151db565b91909101600a0192915050565b7f2c22616e696d6174696f6e5f75726c223a22000000000000000000000000000081526000614d436012830186614a04565b7f616e696d2f00000000000000000000000000000000000000000000000000000081528451614d798160058401602089016151db565b7f2200000000000000000000000000000000000000000000000000000000000000600592909101918201528351614db78160068401602088016151db565b0160060195945050505050565b60008082528251614ddc8160018501602087016151db565b9190910160010192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251614e2181601d8501602087016151db565b91909101601d0192915050565b7f7b226e616d65223a222300000000000000000000000000000000000000000000815260008651614e6681600a850160208b016151db565b7f2000000000000000000000000000000000000000000000000000000000000000600a918401918201528651614ea381600b840160208b016151db565b7f222c226465736372697074696f6e223a00000000000000000000000000000000600b92909101918201528551614ee181601b840160208a016151db565b8551910190614ef781601b8401602089016151db565b7f222c2261747472696275746573223a0000000000000000000000000000000000601b92909101918201528351614f3581602a8401602088016151db565b7f7d00000000000000000000000000000000000000000000000000000000000000602a9290910191820152602b01979650505050505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000815260008251614fa681601a8501602087016151db565b91909101601a0192915050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152614fe560808301846149d8565b9695505050505050565b60208152600061329060208301846149d8565b60408152600061501560408301856149d8565b905082151560208301529392505050565b60a08152600061503960a08301886149d8565b90506001600160a01b038616602083015260ff8516604083015283151560608301526003831061507957634e487b7160e01b600052602160045260246000fd5b8260808301529695505050505050565b604051601f8201601f1916810167ffffffffffffffff811182821017156150b2576150b26152d4565b604052919050565b600067ffffffffffffffff8211156150d4576150d46152d4565b50601f01601f191660200190565b600061ffff8083168185168083038211156150ff576150ff6152a8565b01949350505050565b6000821982111561511b5761511b6152a8565b500190565b600060ff821660ff84168060ff0382111561513d5761513d6152a8565b019392505050565b600082615154576151546152be565b500490565b6000816000190483118215151615615173576151736152a8565b500290565b600060ff821660ff84168160ff0481118215151615615199576151996152a8565b029392505050565b6000828210156151b3576151b36152a8565b500390565b600060ff821660ff8416808210156151d2576151d26152a8565b90039392505050565b60005b838110156151f65781810151838201526020016151de565b83811115611ff05750506000910152565b600060ff82168061521a5761521a6152a8565b6000190192915050565b600181811c9082168061523857607f821691505b6020821081141561330f57634e487b7160e01b600052602260045260246000fd5b600060001982141561526d5761526d6152a8565b5060010190565b600060ff821660ff81141561528b5761528b6152a8565b60010192915050565b6000826152a3576152a36152be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114612e9757600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114612e9757600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220dd523b61eca0dbc71ee8d31d5a0f3bcc8e066bbefdbdf3a6cdcf34470f5b292164736f6c63430008040033000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

Deployed Bytecode

0x6080604052600436106102f25760003560e01c806395d89b411161018f578063bc04666b116100e1578063e324c6641161008a578063e985e9c511610064578063e985e9c514610817578063eb54f9ec14610837578063f2fde38b1461084d57600080fd5b8063e324c664146107bf578063e365ff9c146107df578063e43082f7146107f757600080fd5b8063c87b56dd116100bb578063c87b56dd14610757578063cd9a4cfa14610777578063d2e00d5c1461078a57600080fd5b8063bc04666b146106f7578063c0da9bcd14610717578063c7c3268b1461073757600080fd5b8063a0821be311610143578063b26464041161011d578063b2646404146106a4578063b39cb39d146106b7578063b88d4fde146106d757600080fd5b8063a0821be31461063d578063a22cb4651461066a578063ad2863b31461068a57600080fd5b8063968f156311610174578063968f1563146105f35780639f6b040b14610608578063a035b1fe1461062857600080fd5b806395d89b41146105cb578063963ef77d146105e057600080fd5b80635188bdf91161024857806368ff3273116101fc57806370a08231116101d657806370a0823114610578578063715018a6146105985780638da5cb5b146105ad57600080fd5b806368ff3273146105125780636914db60146105325780636b64c7691461056357600080fd5b8063589a17431161022d578063589a1743146104b25780635d2bcb45146104d25780636352211e146104f257600080fd5b80635188bdf91461048a57806355a339a81461049d57600080fd5b806323b872dd116102aa57806342842e0e1161028457806342842e0e1461041c5780634b97a6001461043c5780634d69563b1461045c57600080fd5b806323b872dd146103c75780633ccfd60b146103e75780634052161d146103fc57600080fd5b8063081812fc116102db578063081812fc1461034e578063095ea7b31461038657806310cdafcd146103a857600080fd5b806301ffc9a7146102f757806306fdde031461032c575b600080fd5b34801561030357600080fd5b50610317610312366004614793565b61086d565b60405190151581526020015b60405180910390f35b34801561033857600080fd5b50610341610952565b6040516103239190614fef565b34801561035a57600080fd5b5061036e61036936600461494e565b6109e4565b6040516001600160a01b039091168152602001610323565b34801561039257600080fd5b506103a66103a136600461474e565b610a8f565b005b3480156103b457600080fd5b5060095461031790610100900460ff1681565b3480156103d357600080fd5b506103a66103e2366004614633565b610bc1565b3480156103f357600080fd5b506103a6610c48565b34801561040857600080fd5b506103a6610417366004614779565b610d54565b34801561042857600080fd5b506103a6610437366004614633565b610de7565b34801561044857600080fd5b506103a6610457366004614779565b610e02565b34801561046857600080fd5b5061047c61047736600461494e565b610e95565b604051908152602001610323565b6103a66104983660046147cb565b610ef7565b3480156104a957600080fd5b506103a661158f565b3480156104be57600080fd5b5061036e6104cd36600461494e565b611621565b3480156104de57600080fd5b506103416104ed36600461494e565b61168d565b3480156104fe57600080fd5b5061036e61050d36600461494e565b61174c565b34801561051e57600080fd5b5061031761052d36600461494e565b6117d7565b34801561053e57600080fd5b5061055261054d36600461494e565b61181c565b604051610323959493929190615026565b34801561056f57600080fd5b506103a66118fd565b34801561058457600080fd5b5061047c6105933660046145df565b61199f565b3480156105a457600080fd5b506103a6611a39565b3480156105b957600080fd5b506007546001600160a01b031661036e565b3480156105d757600080fd5b50610341611a9f565b6103a66105ee366004614966565b611aae565b3480156105ff57600080fd5b506103a6611b62565b34801561061457600080fd5b5061031761062336600461494e565b611c13565b34801561063457600080fd5b5061047c611c3c565b34801561064957600080fd5b5061047c6106583660046145df565b600a6020526000908152604090205481565b34801561067657600080fd5b506103a661068536600461471a565b611cfd565b34801561069657600080fd5b506009546103179060ff1681565b6103a66106b2366004614987565b611dc2565b3480156106c357600080fd5b506103a66106d236600461489b565b611f41565b3480156106e357600080fd5b506103a66106f2366004614673565b611f68565b34801561070357600080fd5b50610317610712366004614966565b611ff6565b34801561072357600080fd5b5061034161073236600461494e565b612045565b34801561074357600080fd5b506103a661075236600461489b565b6123e1565b34801561076357600080fd5b5061034161077236600461494e565b612447565b6103a661078536600461494e565b612746565b34801561079657600080fd5b506107aa6107a536600461494e565b612a88565b60408051928352602083019190915201610323565b3480156107cb57600080fd5b506103416107da36600461494e565b612ad3565b3480156107eb57600080fd5b50600b5460ff1661047c565b34801561080357600080fd5b506103a6610812366004614779565b612c20565b34801561082357600080fd5b506103176108323660046145fb565b612cb3565b34801561084357600080fd5b5061047c60085481565b34801561085957600080fd5b506103a66108683660046145df565b612db8565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061090057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061094c57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606000805461096190615224565b80601f016020809104026020016040519081016040528092919081815260200182805461098d90615224565b80156109da5780601f106109af576101008083540402835291602001916109da565b820191906000526020600020905b8154815290600101906020018083116109bd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a735760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a9a8261174c565b9050806001600160a01b0316836001600160a01b03161415610b245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a6a565b336001600160a01b0382161480610b405750610b408133612cb3565b610bb25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a6a565b610bbc8383612e9a565b505050565b610bcb3382612f15565b610c3d5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a6a565b610bbc838383612ff5565b60026006541415610c9b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6a565b6002600655336000818152600a6020526040808220805490839055905190929083908381818185875af1925050503d8060008114610cf5576040519150601f19603f3d011682016040523d82523d6000602084013e610cfa565b606091505b5050905080610d4b5760405162461bcd60e51b815260206004820152600260248201527f31320000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b50506001600655565b6007546001600160a01b03163314610dae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b60078054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b610bbc83838360405180602001604052806000815250611f68565b6007546001600160a01b03163314610e5c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b60078054911515600160a81b027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b6000610ea0826117d7565b610eec5760405162461bcd60e51b815260206004820152600260248201527f31340000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b61094c6064836151a1565b60026006541415610f4a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6a565b600260065560648411801590610f605750600084115b610fac5760405162461bcd60e51b815260206004820152600160248201527f31000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b610fe0888888888888604051602001610fca96959493929190614a9c565b60405160208183030381529060405283836131cf565b61102c5760405162461bcd60e51b815260206004820152600160248201527f32000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b60138711801561103d575061016e87105b6110895760405162461bcd60e51b815260206004820152600160248201527f33000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b611094600588615294565b156110e15760405162461bcd60e51b815260206004820152600160248201527f34000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b84158015906110f05750600b85105b61113c5760405162461bcd60e51b815260206004820152600160248201527f35000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b60085461118b5760405162461bcd60e51b815260206004820152600260248201527f31330000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b336001600160a01b0384161461126f576111a3611c3c565b3410156111d65760405162461bcd60e51b81526020600482015260016024820152601b60f91b6044820152606401610a6a565b60006111e3600a34615145565b905080600a60006111fc6007546001600160a01b031690565b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461122b9190615108565b9091555061123b905081346151a1565b6001600160a01b0385166000908152600a602052604081208054909190611263908490615108565b90915550611314915050565b6007546001600160a01b0316331461131457600a61128b611c3c565b6112959190615145565b3410156112c85760405162461bcd60e51b81526020600482015260016024820152601b60f91b6044820152606401610a6a565b34600a60006112df6007546001600160a01b031690565b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461130e9190615108565b90915550505b6113436040805160a0810182526060808252600060208301819052928201839052810182905290608082015290565b86868080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250938552505060106040840152506001600160a01b03851660208301526080820181815250506113d989898080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061329792505050565b6000868152601060209081526040808320805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b039590951694909417909355600f815291902082518051849361143192849291019061447d565b506020820151600182018054604085015160608601511515600160a81b027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff60ff909216600160a01b027fffffffffffffffffffffff0000000000000000000000000000000000000000009093166001600160a01b039095169490941791909117908116831782556080850151927fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffffff9091161776010000000000000000000000000000000000000000000083600281111561153e57634e487b7160e01b600052602160045260246000fd5b021790555050600b80546001925060009061155d90849060ff16615120565b92506101000a81548160ff021916908360ff16021790555061157f3386613315565b5050600160065550505050505050565b6007546001600160a01b031633146115e95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b6009805460ff191660011790556040517f7b32beb1cfe463f0e87a98a4ce7f88541d676101df00ca38f0badd3ea908172990600090a1565b60008061162d83611c13565b1561163957508161166c565b611642836117d7565b156116575761165083610e95565b905061166c565b5060008281526012602052604090205461ffff165b6000908152600f60205260409020600101546001600160a01b031692915050565b60606011600061169c84611621565b6001600160a01b03166001600160a01b0316815260200190815260200160002080546116c790615224565b80601f01602080910402602001604051908101604052809291908181526020018280546116f390615224565b80156117405780601f1061171557610100808354040283529160200191611740565b820191906000526020600020905b81548152906001019060200180831161172357829003601f168201915b50505050509050919050565b6000818152600260205260408120546001600160a01b03168061094c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a6a565b6000818152600260205260408120546001600160a01b0316151580156117fd5750606482115b801561094c575061181060646002615178565b60ff1682111592915050565b600f6020526000908152604090208054819061183790615224565b80601f016020809104026020016040519081016040528092919081815260200182805461186390615224565b80156118b05780601f10611885576101008083540402835291602001916118b0565b820191906000526020600020905b81548152906001019060200180831161189357829003601f168201915b505050600190930154919250506001600160a01b0381169060ff600160a01b8204811691600160a81b81048216917601000000000000000000000000000000000000000000009091041685565b6007546001600160a01b031633146119575760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b6008541561196457600080fd5b4260088190556040519081527f1bb96dff6ab5005aff98cdc0cf176bb7d8e0423cb48e02217d35b042cec81e9f9060200160405180910390a1565b60006001600160a01b038216611a1d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a6a565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314611a935760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b611a9d6000613464565b565b60606001805461096190615224565b60026006541415611b015760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6a565b600260065560095460ff16611b585760405162461bcd60e51b815260206004820152600260248201527f31310000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b610d4b82826134c3565b6007546001600160a01b03163314611bbc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b600980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790556040517f32911e1b67bc7ec569317567ae670ec3ed6602311a8314ba1f495e6c3f34c7d890600090a1565b6000818152600260205260408120546001600160a01b03161515801561094c5750506064101590565b6000600854421015611c4d57600080fd5b600060085442611c5d91906151a1565b905062015180811115611c79576703782dace9d9000091505090565b6000611c8761384083615145565b905067de0b6b3a76400000811c6000611ca1836001615108565b67de0b6b3a76400000901c9050611cba61384085615294565b9350613840611cc98286615159565b83611cd6876138406151a1565b611ce09190615159565b611cea9190615108565b611cf49190615145565b94505050505090565b6001600160a01b038216331415611d565760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a6a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60026006541415611e155760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6a565b600260065533600090815260146020526040902054600460ff90911610611e7e5760405162461bcd60e51b815260206004820152600260248201527f31300000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b6040516bffffffffffffffffffffffff193360601b166020820152611ea590603401610fca565b611ef15760405162461bcd60e51b815260206004820152600160248201527f32000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b336000908152601460205260408120805460019290611f1490849060ff16615120565b92506101000a81548160ff021916908360ff160217905550611f3684846134c3565b505060016006555050565b60108110611f4e57600080fd5b336000908152601160205260409020610bbc908383614501565b611f723383612f15565b611fe45760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a6a565b611ff084848484613923565b50505050565b6000808383604051602001612015929190918252602082015260400190565b60408051808303601f1901815291815281516020928301206000908152601390925290205460ff16949350505050565b606061205082611c13565b156120765760008281526010602052604090205461094c906001600160a01b03166139ac565b61207f826117d7565b156120b35761094c6010600061209485610e95565b81526020810191909152604001600020546001600160a01b03166139ac565b60008281526012602090815260408083205461ffff16835260109091528120546120e5906001600160a01b03166139ac565b60008481526012602090815260408083205462010000900461ffff168352601090915281205491925090612121906001600160a01b03166139ac565b905060008260038151811061214657634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b6001600160f81b0319168360008151811061217c57634e487b7160e01b600052603260045260246000fd5b01602001517fff000000000000000000000000000000000000000000000000000000000000001614801561222b5750826004815181106121cc57634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b6001600160f81b0319168360018151811061220257634e487b7160e01b600052603260045260246000fd5b01602001517fff0000000000000000000000000000000000000000000000000000000000000016145b80156122b257508260058151811061225357634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b6001600160f81b0319168360028151811061228957634e487b7160e01b600052603260045260246000fd5b01602001517fff0000000000000000000000000000000000000000000000000000000000000016145b905060005b600f8160ff1610156123d7578180156122d3575060028160ff16115b80156122e2575060068160ff16105b1561235e57826122f36003836151b8565b60ff168151811061231457634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b848260ff168151811061234257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506123c7565b828160ff168151811061238157634e487b7160e01b600052603260045260246000fd5b602001015160f81c60f81b848260ff16815181106123af57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053505b6123d081615274565b90506122b7565b5091949350505050565b6007546001600160a01b0316331461243b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b610bbc600e8383614501565b6000818152600260205260409020546060906001600160a01b03166124ae5760405162461bcd60e51b815260206004820152600260248201527f31350000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b60006124b983612045565b905060006124c6846117d7565b905060006124d3856139bc565b905060007344a2b58082cb8436ac2abbbfdb2032f4ea0fa81563f3377f1c85856040518363ffffffff1660e01b8152600401612510929190615002565b60006040518083038186803b15801561252857600080fd5b505af415801561253c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261256491908101906148db565b9050600061257182613af2565b6040516020016125819190614f6e565b60408051808303601f19018152919052600754909150600160a01b900460ff16156125d25780600e846040516020016125bc93929190614b78565b60405160208183030381529060405290506125f5565b806040516020016125e39190614ccc565b60405160208183030381529060405290505b600754600160a81b900460ff161561262f57600e838260405160200161261d93929190614d11565b60405160208183030381529060405290505b60006127178461263e8a612ad3565b61264788613cbb565b6040517f013638ad00000000000000000000000000000000000000000000000000000000815286907344a2b58082cb8436ac2abbbfdb2032f4ea0fa8159063013638ad9061269b908e908e90600401615002565b60006040518083038186803b1580156126b357600080fd5b505af41580156126c7573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526126ef91908101906148db565b604051602001612703959493929190614e2e565b604051602081830303815290604052613af2565b90508060405160200161272a9190614de9565b6040516020818303038152906040529650505050505050919050565b600260065414156127995760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a6a565b6002600655600954610100900460ff166127f55760405162461bcd60e51b815260206004820152600160248201527f37000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b6127fe81611c13565b61284a5760405162461bcd60e51b815260206004820152600160248201527f38000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b6000818152600f6020526040902060010154600160a81b900460ff16156128b35760405162461bcd60e51b815260206004820152600160248201527f39000000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b3467045b8d561b790000146128ee5760405162461bcd60e51b81526020600482015260016024820152601b60f91b6044820152606401610a6a565b336000908152600c602052604090205460051161290a57600080fd5b336000908152600c6020526040812080546001929061292a908490615108565b909155506000905061293d826064615108565b6000838152600f6020526040902060010180547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16600160a81b17905590506129863382613d49565b67037c7111af940000600a600061299c85611621565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546129cb9190615108565b90915550666f8e2235f280009050600a60006129ef6007546001600160a01b031690565b6001600160a01b03166001600160a01b031681526020019081526020016000206000828254612a1e9190615108565b909155505073e00327f0f5f5f55d01c2fc6a87dda1b8e292ac796000908152600a6020527f1396a5ee4badcc9ef6ac5fb8f603d69ca03abcb0baa28f5ec35d9c6aff2b761c8054666f8e2235f280009290612a7a908490615108565b909155505060016006555050565b600080612a9483611c13565b158015612aa75750612aa5836117d7565b155b612ab057600080fd5b505060009081526012602052604090205461ffff80821692620100009092041690565b6000818152600260205260409020546060906001600160a01b0316612b3a5760405162461bcd60e51b815260206004820152600260248201527f31350000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b612b4382611c13565b15612b61576000828152600f6020526040902080546116c790615224565b612b6a826117d7565b15612bb357600f6000612b7c84610e95565b8152602001908152602001600020600001604051602001612b9d9190614c9a565b6040516020818303038152906040529050919050565b600082815260126020908152604080832081518083018352905461ffff808216808452620100009092048116838601908152918652600f855283862091511685529382902091519093612c099390929101614b3c565b604051602081830303815290604052915050919050565b6007546001600160a01b03163314612c7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b600d8054911515600160a01b027fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff909216919091179055565b600d546000906001600160a01b03811690600160a01b900460ff168015612d7757506040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b038581166004830152808516919083169063c45527919060240160206040518083038186803b158015612d3457600080fd5b505afa158015612d48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d6c919061487f565b6001600160a01b0316145b15612d8657600191505061094c565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b6007546001600160a01b03163314612e125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6a565b6001600160a01b038116612e8e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a6a565b612e9781613464565b50565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0384169081179091558190612edc8261174c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316612f9f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a6a565b6000612faa8361174c565b9050806001600160a01b0316846001600160a01b03161480612fe55750836001600160a01b0316612fda846109e4565b6001600160a01b0316145b80612db05750612db08185612cb3565b826001600160a01b03166130088261174c565b6001600160a01b0316146130845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a6a565b6001600160a01b0382166130ff5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a6a565b61310a600082612e9a565b6001600160a01b03831660009081526003602052604081208054600192906131339084906151a1565b90915550506001600160a01b0382166000908152600360205260408120805460019290613161908490615108565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006131e36007546001600160a01b031690565b6001600160a01b031661328384848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505088516020808b0191909120604080517f19457468657265756d205369676e6564204d6573736167653a0a33320000000081850152603c8082019390935281518082039093018352605c0190528051910120915061327d9050565b90613d67565b6001600160a01b03161490505b9392505050565b6000806132c2836040516020016132ae9190614dc4565b604051602081830303815290604052613d8b565b90508051602082016000f091506001600160a01b03821661330f576040517f08d4abb600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50919050565b6001600160a01b03821661336b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a6a565b6000818152600260205260409020546001600160a01b0316156133d05760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a6a565b6001600160a01b03821660009081526003602052604081208054600192906133f9908490615108565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6134cc82611c13565b80156134dc57506134dc81611c13565b6135285760405162461bcd60e51b815260206004820152600260248201527f31360000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b808214156135785760405162461bcd60e51b815260206004820152600260248201527f31370000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b6000828152600f6020526040902060010154600160a01b900460ff166135e05760405162461bcd60e51b815260206004820152600260248201527f31380000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b3467011c37937e0800001461361b5760405162461bcd60e51b81526020600482015260016024820152601b60f91b6044820152606401610a6a565b60408051602080820185905281830184905282518083038401815260609092018352815191810191909120600081815260139092529190205460ff16156136a45760405162461bcd60e51b815260206004820152600260248201527f31390000000000000000000000000000000000000000000000000000000000006044820152606401610a6a565b600b80546001919082906136c2908290610100900461ffff166150e2565b825461ffff91821661010093840a9081029083021990911617909255600b546000935004166136f360646002615178565b60ff1661370091906150e2565b60408051808201825261ffff87811682528681166020808401919091526000898152600f90915292909220600101805493909216935091600160a01b900460ff1690601461374d83615207565b825460ff9182166101009390930a9283029190920219909116179055506000828152601260209081526040808320845181548487015161ffff90811662010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000090921692169190911717905585835260139091529020805460ff191660011790556137da3383613d49565b66c6f3b40b6c0000600a60006137ef88611621565b6001600160a01b03166001600160a01b03168152602001908152602001600020600082825461381e9190615108565b90915550661c6bf5263400009050600a600061383987611621565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546138689190615108565b90915550661c6bf5263400009050600a600061388c6007546001600160a01b031690565b6001600160a01b03166001600160a01b0316815260200190815260200160002060008282546138bb9190615108565b909155505073e00327f0f5f5f55d01c2fc6a87dda1b8e292ac796000908152600a6020527f1396a5ee4badcc9ef6ac5fb8f603d69ca03abcb0baa28f5ec35d9c6aff2b761c8054661c6bf5263400009290613917908490615108565b90915550505050505050565b61392e848484612ff5565b61393a84848484613da1565b611ff05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a6a565b606061094c826001600019613f4e565b6060816139fc57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115613a265780613a1081615259565b9150613a1f9050600a83615145565b9150613a00565b60008167ffffffffffffffff811115613a4f57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613a79576020820181803683370190505b5090505b8415612db057613a8e6001836151a1565b9150613a9b600a86615294565b613aa6906030615108565b60f81b818381518110613ac957634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350613aeb600a86615145565b9450613a7d565b805160609080613b12575050604080516020810190915260008152919050565b60006003613b21836002615108565b613b2b9190615145565b613b36906004615159565b90506000613b45826020615108565b67ffffffffffffffff811115613b6b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613b95576020820181803683370190505b509050600060405180606001604052806040815260200161532e604091399050600181016020830160005b86811015613c21576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b835260049092019101613bc0565b506003860660018114613c3b5760028114613c8557613cad565b7f3d3d0000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe830152613cad565b7f3d000000000000000000000000000000000000000000000000000000000000006000198301525b505050918152949350505050565b6060600082613cff576040518060400160405280601181526020017f22526567756c617220706f6c79676f6e73000000000000000000000000000000815250613d36565b6040518060400160405280600881526020017f22436972636c65730000000000000000000000000000000000000000000000008152505b905080604051602001612c099190614ad5565b613d63828260405180602001604052806000815250614018565b5050565b6000806000613d7685856140a1565b91509150613d8381614111565b509392505050565b6060815182604051602001612b9d929190614c03565b60006001600160a01b0384163b15613f43576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290613dfe903390899088908890600401614fb3565b602060405180830381600087803b158015613e1857600080fd5b505af1925050508015613e48575060408051601f3d908101601f19168201909252613e45918101906147af565b60015b613ef8573d808015613e76576040519150601f19603f3d011682016040523d82523d6000602084013e613e7b565b606091505b508051613ef05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a6a565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612db0565b506001949350505050565b6060833b80613f6d575050604080516020810190915260008152613290565b80841115613f8b575050604080516020810190915260008152613290565b83831015613fd6576040517f2c4a89fa000000000000000000000000000000000000000000000000000000008152600481018290526024810185905260448101849052606401610a6a565b8383038482036000828210613feb5782613fed565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b6140228383613315565b61402f6000848484613da1565b610bbc5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a6a565b6000808251604114156140d85760208301516040840151606085015160001a6140cc87828585614348565b9450945050505061410a565b82516040141561410257602083015160408401516140f7868383614435565b93509350505061410a565b506000905060025b9250929050565b600081600481111561413357634e487b7160e01b600052602160045260246000fd5b141561413c5750565b600181600481111561415e57634e487b7160e01b600052602160045260246000fd5b14156141ac5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a6a565b60028160048111156141ce57634e487b7160e01b600052602160045260246000fd5b141561421c5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a6a565b600381600481111561423e57634e487b7160e01b600052602160045260246000fd5b14156142b25760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a6a565b60048160048111156142d457634e487b7160e01b600052602160045260246000fd5b1415612e975760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c60448201527f75650000000000000000000000000000000000000000000000000000000000006064820152608401610a6a565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561437f575060009050600361442c565b8460ff16601b1415801561439757508460ff16601c14155b156143a8575060009050600461442c565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156143fc573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166144255760006001925092505061442c565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b0161446f87828885614348565b935093505050935093915050565b82805461448990615224565b90600052602060002090601f0160209004810192826144ab57600085556144f1565b82601f106144c457805160ff19168380011785556144f1565b828001600101855582156144f1579182015b828111156144f15782518255916020019190600101906144d6565b506144fd929150614575565b5090565b82805461450d90615224565b90600052602060002090601f01602090048101928261452f57600085556144f1565b82601f106145485782800160ff198235161785556144f1565b828001600101855582156144f1579182015b828111156144f157823582559160200191906001019061455a565b5b808211156144fd5760008155600101614576565b8035801515811461459a57600080fd5b919050565b60008083601f8401126145b0578182fd5b50813567ffffffffffffffff8111156145c7578182fd5b60208301915083602082850101111561410a57600080fd5b6000602082840312156145f0578081fd5b8135613290816152ea565b6000806040838503121561460d578081fd5b8235614618816152ea565b91506020830135614628816152ea565b809150509250929050565b600080600060608486031215614647578081fd5b8335614652816152ea565b92506020840135614662816152ea565b929592945050506040919091013590565b60008060008060808587031215614688578081fd5b8435614693816152ea565b935060208501356146a3816152ea565b925060408501359150606085013567ffffffffffffffff8111156146c5578182fd5b8501601f810187136146d5578182fd5b80356146e86146e3826150ba565b615089565b8181528860208385010111156146fc578384fd5b81602084016020830137908101602001929092525092959194509250565b6000806040838503121561472c578182fd5b8235614737816152ea565b91506147456020840161458a565b90509250929050565b60008060408385031215614760578182fd5b823561476b816152ea565b946020939093013593505050565b60006020828403121561478a578081fd5b6132908261458a565b6000602082840312156147a4578081fd5b8135613290816152ff565b6000602082840312156147c0578081fd5b8151613290816152ff565b60008060008060008060008060a0898b0312156147e6578384fd5b883567ffffffffffffffff808211156147fd578586fd5b6148098c838d0161459f565b909a50985060208b0135915080821115614821578586fd5b61482d8c838d0161459f565b909850965060408b0135955060608b01359150614849826152ea565b90935060808a0135908082111561485e578384fd5b5061486b8b828c0161459f565b999c989b5096995094979396929594505050565b600060208284031215614890578081fd5b8151613290816152ea565b600080602083850312156148ad578182fd5b823567ffffffffffffffff8111156148c3578283fd5b6148cf8582860161459f565b90969095509350505050565b6000602082840312156148ec578081fd5b815167ffffffffffffffff811115614902578182fd5b8201601f81018413614912578182fd5b80516149206146e3826150ba565b818152856020838501011115614934578384fd5b6149458260208301602086016151db565b95945050505050565b60006020828403121561495f578081fd5b5035919050565b60008060408385031215614978578182fd5b50508035926020909101359150565b6000806000806060858703121561499c578182fd5b8435935060208501359250604085013567ffffffffffffffff8111156149c0578283fd5b6149cc8782880161459f565b95989497509550505050565b600081518084526149f08160208601602086016151db565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680614a1e57607f831692505b6020808410821415614a3e57634e487b7160e01b86526022600452602486fd5b818015614a525760018114614a6357614a90565b60ff19861689528489019650614a90565b60008881526020902060005b86811015614a885781548b820152908501908301614a6f565b505084890196505b50505050505092915050565b858782376000868201818152858782379094019283525060601b6bffffffffffffffffffffffff19166020820152603401949350505050565b60008251614ae78184602087016151db565b7f206f6e20616e20696e66696e6974656c79207363616c61626c652063616e76619201918252507f732e2200000000000000000000000000000000000000000000000000000000006020820152602301919050565b6000614b488285614a04565b7f200000000000000000000000000000000000000000000000000000000000000081526149456001820185614a04565b7f2c22696d6167655f64617461223a220000000000000000000000000000000000815260008451614bb081600f8501602089016151db565b7f222c22696d616765223a22000000000000000000000000000000000000000000600f91840191820152614be7601a820186614a04565b90508351614bf98183602088016151db565b0195945050505050565b7f630000000000000000000000000000000000000000000000000000000000000081527fffffffff000000000000000000000000000000000000000000000000000000008360e01b1660018201527f80600e6000396000f30000000000000000000000000000000000000000000000600582015260008251614c8c81600e8501602087016151db565b91909101600e019392505050565b7f436972636c656420000000000000000000000000000000000000000000000000815260006132906008830184614a04565b7f2c22696d616765223a2200000000000000000000000000000000000000000000815260008251614d0481600a8501602087016151db565b91909101600a0192915050565b7f2c22616e696d6174696f6e5f75726c223a22000000000000000000000000000081526000614d436012830186614a04565b7f616e696d2f00000000000000000000000000000000000000000000000000000081528451614d798160058401602089016151db565b7f2200000000000000000000000000000000000000000000000000000000000000600592909101918201528351614db78160068401602088016151db565b0160060195945050505050565b60008082528251614ddc8160018501602087016151db565b9190910160010192915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251614e2181601d8501602087016151db565b91909101601d0192915050565b7f7b226e616d65223a222300000000000000000000000000000000000000000000815260008651614e6681600a850160208b016151db565b7f2000000000000000000000000000000000000000000000000000000000000000600a918401918201528651614ea381600b840160208b016151db565b7f222c226465736372697074696f6e223a00000000000000000000000000000000600b92909101918201528551614ee181601b840160208a016151db565b8551910190614ef781601b8401602089016151db565b7f222c2261747472696275746573223a0000000000000000000000000000000000601b92909101918201528351614f3581602a8401602088016151db565b7f7d00000000000000000000000000000000000000000000000000000000000000602a9290910191820152602b01979650505050505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000815260008251614fa681601a8501602087016151db565b91909101601a0192915050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152614fe560808301846149d8565b9695505050505050565b60208152600061329060208301846149d8565b60408152600061501560408301856149d8565b905082151560208301529392505050565b60a08152600061503960a08301886149d8565b90506001600160a01b038616602083015260ff8516604083015283151560608301526003831061507957634e487b7160e01b600052602160045260246000fd5b8260808301529695505050505050565b604051601f8201601f1916810167ffffffffffffffff811182821017156150b2576150b26152d4565b604052919050565b600067ffffffffffffffff8211156150d4576150d46152d4565b50601f01601f191660200190565b600061ffff8083168185168083038211156150ff576150ff6152a8565b01949350505050565b6000821982111561511b5761511b6152a8565b500190565b600060ff821660ff84168060ff0382111561513d5761513d6152a8565b019392505050565b600082615154576151546152be565b500490565b6000816000190483118215151615615173576151736152a8565b500290565b600060ff821660ff84168160ff0481118215151615615199576151996152a8565b029392505050565b6000828210156151b3576151b36152a8565b500390565b600060ff821660ff8416808210156151d2576151d26152a8565b90039392505050565b60005b838110156151f65781810151838201526020016151de565b83811115611ff05750506000910152565b600060ff82168061521a5761521a6152a8565b6000190192915050565b600181811c9082168061523857607f821691505b6020821081141561330f57634e487b7160e01b600052602260045260246000fd5b600060001982141561526d5761526d6152a8565b5060010190565b600060ff821660ff81141561528b5761528b6152a8565b60010192915050565b6000826152a3576152a36152be565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114612e9757600080fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081168114612e9757600080fdfe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220dd523b61eca0dbc71ee8d31d5a0f3bcc8e066bbefdbdf3a6cdcf34470f5b292164736f6c63430008040033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1

-----Decoded View---------------
Arg [0] : openSeaProxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1


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.