ETH Price: $3,308.75 (+0.21%)
Gas: 0.2 GWei

Token

Contributors (CONT)
 

Overview

Max Total Supply

70 CONT

Holders

11

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
Contributors

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 14 : Contributors.sol
// SPDX-License-Identifier: LYAA

pragma solidity ^0.8.26;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

/// @title CONTRIBUTORS
/// @author PhiMarHal
/// @notice Infinite Onchain Story
/// @dev Stores text, builds dynamic onchain NFTs
contract Contributors is ERC721, Ownable {
    using Strings for uint256;
    using Strings for address;

    // VARIABLES
    uint256 immutable public NAME_LENGTH = 22;
    uint256 immutable public CONT_AMOUNT = 16;
    uint256 immutable public CONT_LENGTH = 256;
    uint256 immutable public PAGE_LENGTH = CONT_LENGTH * CONT_AMOUNT + CONT_AMOUNT; // adding whitespaces
    string constant public RUNE_STRING = unicode"ᛚᚮᛁᚤᛆᛆᛚᚮᛁᚤᛆᛆᛚᚮᛁᚤᛆᛆᛚᚮᛁᚤᛆᛆᛚᚮᛁᚤᛆᛆᛚᚮᛁᚤᛆᛆᛚᚮᛁᚤᛆᛆᛚᚮᛁᚤᛆᛆᛚᚮᛁᚤᛆᛆᛚᚮᛁᚤᛆᛆᛚᚮᛁᚤ";

    uint256 public next_contribution_cost = 0.0002 ether; // 200000000000000 wei
    uint256 public currentPage = 0;
    uint256 public currentContribution = 0;
    uint256 public totalSupply = 0;

    struct s_contribution {
        string script;
        address author;
    }

    struct s_page {
        string script;
        address editor;
        uint256 cost;
    }

    mapping(uint256 => s_contribution) public contribution;
    mapping(uint256 => s_page) public page;

    mapping(address => uint256) public etherBalance;

    mapping(address => string) public addressToName;
    mapping(string => address) public nameToAddress;

    // EVENTS
    event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);

    // MODIFIERS
    modifier validateString(string memory _input, uint _length) {
        require(bytes(_input).length > 0, "Contributors: input text is empty");
        require(bytes(_input).length <= _length, "Contributors: too many characters");
        _;
    }

    modifier validateAlphanumeric(string memory _str) {
        bytes memory b = bytes(_str);
        for (uint256 i; i < b.length; i++) {
            bytes1 _char = b[i];
            require(
                (_char >= 0x30 && _char <= 0x39) || // 0-9
                (_char >= 0x41 && _char <= 0x5A) || // A-Z
                (_char >= 0x61 && _char <= 0x7A) || // a-z
                (_char == 0x5F) ||                  // underscore
                (_char == 0x2D),                    // hyphen
                "Contributors: only alphanumeric, underscore, hyphen"
            );
        }
        _;
    }

    // CONSTRUCTOR
    // set deployer as admin, initialize cost for first page
    constructor() ERC721("Contributors", "CONT") {
        page[0].cost = next_contribution_cost;
    }

    // WRITE FUNCTIONS

    /// @notice Registers a unique name for the caller's address
    /// @dev The name must be alphanumeric, underscore, or hyphen, and within the NAME_LENGTH limit
    /// @param _name The desired name to register
    function register(string memory _name) validateString(_name, NAME_LENGTH) validateAlphanumeric(_name) public {
        require(nameToAddress[_name] == address(0), "Contributors: name already taken");

        addressToName[msg.sender] = _name;
        nameToAddress[_name] = msg.sender;
    }

    /// @notice Allows users to withdraw their accumulated ether balance
    /// @dev Transfers the entire balance associated with the caller's address
    function withdraw() public {
        uint256 _reward = etherBalance[msg.sender];
        etherBalance[msg.sender] = 0;
        (bool success, ) = payable(msg.sender).call{value: _reward}("");
        require(success, "Contributors: reward withdrawal failed");
    }

    /// @notice Triggers a metadata update for all tokens in a specific page
    /// @dev Emits a BatchMetadataUpdate event for the specified page's token range
    /// @param _pageId The ID of the page to update metadata for
    function updateMetadata(uint256 _pageId) public {
        uint256 _startId = _pageId * CONT_AMOUNT * 2;
        uint256 _endId = _startId + (CONT_AMOUNT * 2) - 1;
        emit BatchMetadataUpdate(_startId, _endId);
    }

    /// @notice Allows users to contribute to the current page by paying ETH
    /// @dev Mints two NFTs: one for the contribution and one for the full page
    /// @param _words Text content of the contribution
    function contribute(string memory _words) validateString(_words, CONT_LENGTH) public payable {
        require(msg.value == page[currentPage].cost, "Contributors: not right amount of ETH to contribute");

        // add contribution
        contribution[currentContribution].script = _words;
        contribution[currentContribution].author = msg.sender;
        
        // mint NFTs, first contribution then full page
        _mint(msg.sender, totalSupply);
        totalSupply++;
        _mint(msg.sender, totalSupply);
        totalSupply++;

        // increment counter
        currentContribution++;

        // update metadata
        updateMetadata(currentPage);

        // move on to next page if we filled it with enough contributions
        if(currentContribution % CONT_AMOUNT == 0) {
            currentPage++;
            page[currentPage].cost = next_contribution_cost;
        }

    }

    /// @notice Finalizes and publishes a completed page
    /// @dev Only callable by the contract owner, distributes rewards to editor and admin
    /// @param _script Finalized script content for the page
    /// @param _editor Address of the editor for this page
    /// @param _pageId ID of the page to be published
    function publish(string memory _script, address _editor, uint256 _pageId) validateString(_script, PAGE_LENGTH) onlyOwner public {
        require(currentContribution / CONT_AMOUNT > _pageId, "Contributors: need more contributions");
        require(bytes(page[_pageId].script).length == 0, "Contributors: page is already finalized");

        page[_pageId].script = _script;
        page[_pageId].editor = _editor;

        uint256 _reward = page[_pageId].cost * CONT_AMOUNT / 2;
        etherBalance[page[_pageId].editor] += _reward;
        etherBalance[msg.sender] += _reward;

        // update metadata
        updateMetadata(_pageId);
    }

    /// @notice Updates contribution cost for the next page
    /// @dev Only callable by the contract owner
    /// @param _cost New contribution cost in wei
    function reprice(uint256 _cost) onlyOwner public {
        next_contribution_cost = _cost;
    }

    // VIEW FUNCTIONS

    /// @notice Retrieves contract-level metadata
    /// @dev Returns a data URI containing a JSON object with contract details
    /// @return A string containing the data URI for the contract metadata
    function contractURI() public view returns (string memory) {
        string memory _description = string(abi.encodePacked(
        "INFINITE ONCHAIN STORY. LEDGER OF SECRETS. TAKE THE CONTRACT. WRITE YOUR WORDS. ",
        address(this).toHexString()
        ));
        string memory _svgBody = generateContributionSVG("CONTRIBUTORS", _description, "SCROLL", RUNE_STRING);
        string memory _image = Base64.encode(bytes(_svgBody));

        string memory _json = Base64.encode(bytes(string(abi.encodePacked(
            '{'
            '"name": "CONTRIBUTORS",'
            '"description": "', _description, '",',
            '"image": "data:image/svg+xml;base64,', _image, '",'
            '"banner_image": "data:image/svg+xml;base64,', _image, '",'
            '"featured_image": "data:image/svg+xml;base64,', _image, '",'
            '"collaborators": ["', Strings.toHexString(uint160(owner()), 20), '"]'
            '}'
        ))));

        return string(abi.encodePacked('data:application/json;base64,', _json));
    }

    /// @notice Generates and returns the token URI for a given token ID
    /// @dev Even ID = contribution, uneven ID = page
    /// @param _tokenId The ID of the token to generate the URI for
    /// @return A string containing the data URI for the token metadata
    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        string memory svgBody;
        string memory title;
        string memory content;
        string memory author;

        uint256 pageNumber = _tokenId / 2 / CONT_AMOUNT; 
        title = string(abi.encodePacked(pageNumber.toString(), unicode"ᛈ"));
        content = tokenDescription(_tokenId);
        author = string(abi.encodePacked("by ", authorDescription(_tokenId)));

        if (_tokenId % 2 == 1) { // Page NFT

            // Calculate scrolling mechanics
            uint256 charCount = bytes(content).length;
            uint256 baseChars = PAGE_LENGTH;
            uint256 baseTranslation = 2400;
            uint256 baseStart = 800;
            uint256 ratio = (baseChars * 1000) / baseTranslation; // mul * 1000 because solidity can't do decimals
            uint256 verticalTranslation = (charCount * 1000) / ratio + 40; // +40 as a buffer for tiny char count
            
            // Calculate the animation duration
            uint256 baseDuration = 120;
            uint256 totalPixels = baseStart + verticalTranslation;
            uint256 duration = (totalPixels * baseDuration) / (baseStart + baseTranslation);

            svgBody = generatePageSVG(title, content, verticalTranslation, duration, RUNE_STRING);
        
        } else { // Contribution NFT

            uint256 contNumber = _tokenId / 2;
            title = string.concat(title, contNumber.toString(), unicode"ᛢ");

            svgBody = generateContributionSVG(title, content, author, RUNE_STRING);
        }

        // Encode SVG image in Base64
        string memory image = Base64.encode(bytes(svgBody));

        // Construct JSON metadata
        string memory json = Base64.encode(bytes(string(abi.encodePacked(
            '{"name": "', _tokenId.toString(), unicode"ᚦ", title, '", ',
            '"description": "Token ', _tokenId.toString(), ' script: ', content, '", ',
            '"image": "data:image/svg+xml;base64,', image, '"}'
        ))));

        // Return the final tokenURI
        return string(abi.encodePacked('data:application/json;base64,', json));
    }

    /// @notice Generates an SVG image for a full page of content
    /// @dev Internal function used by tokenURI for page NFTs
    /// @param title Title of the page
    /// @param content Content of the page
    /// @param verticalTranslation Vertical translation value for scrolling animation
    /// @param duration Duration of the scrolling animation
    /// @param runeString String of runes to be displayed on the sides
    /// @return A string containing the SVG markup for the page image
    function generatePageSVG(string memory title, string memory content, uint256 verticalTranslation, uint256 duration, string memory runeString) internal pure returns (string memory) {
        return string(abi.encodePacked(
            '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 900" preserveAspectRatio="xMidYMid meet">',
            '<defs>',
            '<clipPath id="svg-clip"><rect x="0" y="0" width="600" height="900"/></clipPath>',
            '<clipPath id="scroll-clip"><rect x="50" y="60" width="500" height="2400"/></clipPath>',
            '</defs>',
            '<style>',
            '.scroll-container {width: 100%; height: 100%;}',
            '.cylinder-container {width: 600px; height: 60px;}',
            '.scroll-body {fill: #F5E5B3; stroke: black; stroke-width: 3;}',
            '.cylinder {fill: #F5E5B3; stroke: black; stroke-width: 3;}',
            '.handle {fill: #8B4513; stroke: black; stroke-width: 3;}',
            '.title { font-family: Arial, sans-serif; font-size: 30px; text-anchor: middle; }',
            '.author { font-family: Arial, sans-serif; font-size: 24px; text-anchor: middle; }',
            '.content {font-family: Arial, sans-serif; font-size: 16px; }',
            '.runes {font-family: Arial, sans-serif; font-size: 16px; }',
            '</style>',
            '<g clip-path="url(#svg-clip)">',
            '<rect width="100%" height="100%" fill="#ffffff"/>',
            '<rect class="scroll-body" x="50" y="58.5" width="500" height="783"/>',
            '<path id="leftRunePath" d="M55 60v780"/>',
            '<path id="rightRunePath" d="M533 60v780"/>',
            '<text class="runes">',
            '<textPath href="#leftRunePath">',
            runeString,
            '<animate attributeName="startOffset" from="0" to="-400" dur="15s" repeatCount="indefinite"/>',
            '</textPath>',
            '<textPath href="#leftRunePath">',
            runeString,
            '<animate attributeName="startOffset" from="400" to="0" dur="15s" repeatCount="indefinite"/>',
            '</textPath>',
            '<textPath href="#leftRunePath">',
            runeString,
            '<animate attributeName="startOffset" from="800" to="400" dur="15s" repeatCount="indefinite"/>',
            '</textPath>',
            '</text>',
            '<text class="runes">',
            '<textPath href="#rightRunePath">',
            runeString,
            '<animate attributeName="startOffset" from="0" to="-400" dur="15s" repeatCount="indefinite"/>',
            '</textPath>',
            '<textPath href="#rightRunePath">',
            runeString,
            '<animate attributeName="startOffset" from="400" to="0" dur="15s" repeatCount="indefinite"/>',
            '</textPath>',
            '<textPath href="#rightRunePath">',
            runeString,
            '<animate attributeName="startOffset" from="800" to="400" dur="15s" repeatCount="indefinite"/>',
            '</textPath>',
            '</text>',
            '<g clip-path="url(#scroll-clip)">',
            '<foreignObject x="70" y="80" width="460" height="2400">',
            '<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, sans-serif; font-size: 16px; line-height: 1.5; overflow-wrap: break-word; word-break: break-word;">',
            content,
            '</div>',
            '</foreignObject>',
            '<animateTransform attributeName="transform" type="translate" values="0 800; 0 -',
            Strings.toString(verticalTranslation),
            '" dur="',
            Strings.toString(duration),
            's" repeatCount="indefinite"/>',
            '</g>',
            '<g class="cylinder-container">',
            '<rect class="handle" x="1.5" y="11.5" width="37" height="37" rx="8.5" ry="8.5"/>',
            '<rect class="handle" x="561.5" y="11.5" width="37" height="37" rx="8.5" ry="8.5"/>',
            '<rect class="cylinder" x="20" y="1.5" width="560" height="57" rx="28.5" ry="28.5"/>',
            '<text class="title" x="300" y="38">CONTRIBUTORS</text>',
            '</g>',
            '<g class="cylinder-container" transform="translate(0, 840)">',
            '<rect class="handle" x="1.5" y="11.5" width="37" height="37" rx="8.5" ry="8.5"/>',
            '<rect class="handle" x="561.5" y="11.5" width="37" height="37" rx="8.5" ry="8.5"/>',
            '<rect class="cylinder" x="20" y="1.5" width="560" height="57" rx="28.5" ry="28.5"/>',
            '<text class="author" x="300" y="38">', title, '</text>',
            '</g>',
            '</g>',
            '</svg>'
        ));
    }

    /// @notice Generates an SVG image for a single contribution
    /// @dev Internal function used by tokenURI for contribution NFTs
    /// @param title Title of the contribution
    /// @param content Content of the contribution
    /// @param author Author of the contribution
    /// @param runeString String of runes to be displayed on the sides
    /// @return A string containing the SVG markup for the contribution image
    function generateContributionSVG(string memory title, string memory content, string memory author, string memory runeString) internal pure returns (string memory) {
        return string(abi.encodePacked(
            '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400" preserveAspectRatio="xMidYMid meet">',
            '<defs>',
            '<clipPath id="content-clip"><rect x="20" y="60" width="360" height="280"/></clipPath>',
            '</defs>',
            '<style>',
            '.scroll-container { width: 100%; height: 100%; }',
            '.cylinder-container { width: 400px; height: 60px; }',
            '.scroll-body { fill: #F5E5B3; stroke: black; stroke-width: 2; }',
            '.cylinder { fill: #F5E5B3; stroke: black; stroke-width: 2; }',
            '.handle { fill: #8B4513; stroke: black; stroke-width: 2; }',
            '.title { font-family: Arial, sans-serif; font-size: 24px; text-anchor: middle; }',
            '.author { font-family: Arial, sans-serif; font-size: 20px; text-anchor: middle; }',
            '.content { font-family: Arial, sans-serif; font-size: 14px; fill: black; }',
            '.runes { font-family: Arial, sans-serif; font-size: 12px; opacity: 0.7; }',
            '</style>',
            '<rect width="100%" height="100%" fill="#ffffff"/>',
            '<rect class="scroll-body" x="50" y="58.5" width="300" height="283"/>',
            '<text class="runes" x="60" y="60" writing-mode="tb" textLength="280">',
            runeString,
            '</text>',
            '<text class="runes" x="340" y="60" writing-mode="tb" textLength="280">',
            runeString,
            '</text>',
            '<g clip-path="url(#content-clip)">',
            '<foreignObject x="70" y="70" width="260" height="260">',
            '<div xmlns="http://www.w3.org/1999/xhtml" style="font-family: Arial, sans-serif; font-size: 15px; line-height: 1.5; overflow-wrap: break-word; word-break: break-word;">',
            content,
            '</div>',
            '</foreignObject>',
            '</g>',
            '<g class="cylinder-container">',
            '<rect class="handle" x="1.5" y="11.5" width="37" height="37" rx="8.5" ry="8.5"/>',
            '<rect class="handle" x="361.5" y="11.5" width="37" height="37" rx="8.5" ry="8.5"/>',
            '<rect class="cylinder" x="20" y="1.5" width="360" height="57" rx="28.5" ry="28.5"/>',
            '<text class="title" x="200" y="38">', title, '</text>',
            '</g>',
            '<g class="cylinder-container" transform="translate(0, 340)">',
            '<rect class="handle" x="1.5" y="11.5" width="37" height="37" rx="8.5" ry="8.5"/>',
            '<rect class="handle" x="361.5" y="11.5" width="37" height="37" rx="8.5" ry="8.5"/>',
            '<rect class="cylinder" x="20" y="1.5" width="360" height="57" rx="28.5" ry="28.5"/>',
            '<text class="author" x="200" y="38">', author, '</text>',
            '</g>',
            '</svg>'
        ));
    }
    
    /// @notice Retrieves the appropriate script content for a given token ID
    /// @dev Handles both page and contribution tokens
    /// @param _tokenId The ID of the token to get the description for
    /// @return A string containing the script content
    function tokenDescription(uint256 _tokenId) public view returns (string memory) {
        if (_tokenId % 2 == 1) {
            uint256 _pageID = _tokenId / 2 / CONT_AMOUNT;
            return pageScript(_pageID);
        } else {
            return contribution[_tokenId / 2].script;
        }
    }

    /// @notice Retrieves the author or editor name for a given token ID
    /// @dev Returns name if one is registered, else returns address truncated to NAME_LENGTH
    /// @param _tokenId ID of the token to get the author description for
    /// @return A string containing the author or editor name/address
    function authorDescription(uint256 _tokenId) public view returns (string memory) {
        uint256 _mappingId;
        address _author;

        if(_tokenId % 2 == 1) {
            _mappingId = _tokenId / 2 / CONT_AMOUNT;
            _author = page[_mappingId].editor;
        }
        else {
            _mappingId = _tokenId / 2;
            _author = contribution[_mappingId].author;
        }
        
        if(bytes(addressToName[_author]).length > 0) {
            return addressToName[_author];
        } else {
            return addressToString(_author);
        }
    }

    /// @notice Converts an address to a string representation
    /// @dev Used when an address hasn't registered a name
    /// @param _adr The address to convert
    /// @return A string representation of the address
    function addressToString(address _adr) public pure returns (string memory) {
        bytes memory data = abi.encodePacked(_adr);
        bytes memory alphabet = "0123456789abcdef";

        bytes memory str = new bytes(22);
        str[0] = "0";
        str[1] = "x";
        for (uint i = 0; i < 10; i++) {
            str[2+i*2] = alphabet[uint8(data[i] >> 4)];
            str[3+i*2] = alphabet[uint8(data[i] & 0x0f)];
        }

        return string(str);
    }

    /// @notice Retrieves the script content for a specific page
    /// @dev Returns the finalized script if page is finished, otherwise concatenates all contributions
    /// @param _id ID of the page to retrieve the script for
    /// @return A string containing the page script
    function pageScript(uint256 _id) public view returns (string memory) {
        if(bytes(page[_id].script).length > 0) {
            return page[_id].script;
        } else {
            uint256 _firstContribution = _id * CONT_AMOUNT;
            string memory _tempScript;
            for(uint i = 0; i < CONT_AMOUNT; i++) {
                _tempScript = string.concat(_tempScript, contribution[_firstContribution].script, " ");
                _firstContribution++;
            }
            return _tempScript;
        }
    }

}

File 2 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";

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

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        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_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

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

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 3 of 14 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.2) (utils/Base64.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 0x20)
            let dataPtr := data
            let endPtr := add(data, mload(data))

            // In some cases, the last iteration will read bytes after the end of the data. We cache the value, and
            // set it to zero to make sure no dirty bytes are read in that section.
            let afterPtr := add(endPtr, 0x20)
            let afterCache := mload(afterPtr)
            mstore(afterPtr, 0x00)

            // Run over the input, 3 bytes at a time
            for {

            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 byte (24 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F to bitmask the least significant 6 bits.
                // Use this as an index into the lookup table, mload an entire word
                // so the desired character is in the least significant byte, and
                // mstore8 this least significant byte into the result and continue.

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // Reset the value that was cached
            mstore(afterPtr, afterCache)

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 5 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.20;

import {IERC721} from "./IERC721.sol";
import {IERC721Receiver} from "./IERC721Receiver.sol";
import {IERC721Metadata} from "./extensions/IERC721Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {Strings} from "../../utils/Strings.sol";
import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
import {IERC721Errors} from "../../interfaces/draft-IERC6093.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}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

    mapping(address owner => mapping(address operator => 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 returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual returns (address) {
        return _requireOwned(tokenId);
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual {
        _approve(to, tokenId, _msgSender());
    }

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

        return _getApproved(tokenId);
    }

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if `spender` does not have approval from the provided `owner` for the given token or for all its assets
     * the `spender` for the specific `tokenId`.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * 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 {
        _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);
        _checkOnERC721Received(address(0), to, tokenId, data);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(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 {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC721 standard 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 like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - 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) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        _checkOnERC721Received(from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target address. This will revert if the
     * recipient doesn't accept the token transfer. 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
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory data) private {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    revert ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert ERC721InvalidReceiver(to);
                } else {
                    /// @solidity memory-safe-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}

File 6 of 14 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 7 of 14 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 8 of 14 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 9 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "./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);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 10 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 11 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;

import {IERC721} from "../IERC721.sol";

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

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

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

File 12 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

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

File 13 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

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

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

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

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

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "viaIR": true,
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"length","type":"uint256"}],"name":"StringsInsufficientHexLength","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":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","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":[],"name":"CONT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CONT_LENGTH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NAME_LENGTH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAGE_LENGTH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RUNE_STRING","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_adr","type":"address"}],"name":"addressToString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"authorDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_words","type":"string"}],"name":"contribute","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"contribution","outputs":[{"internalType":"string","name":"script","type":"string"},{"internalType":"address","name":"author","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentContribution","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentPage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"etherBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"nameToAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"next_contribution_cost","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":"","type":"uint256"}],"name":"page","outputs":[{"internalType":"string","name":"script","type":"string"},{"internalType":"address","name":"editor","type":"address"},{"internalType":"uint256","name":"cost","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"pageScript","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_script","type":"string"},{"internalType":"address","name":"_editor","type":"address"},{"internalType":"uint256","name":"_pageId","type":"uint256"}],"name":"publish","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"}],"name":"register","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"reprice","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":"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":"_tokenId","type":"uint256"}],"name":"tokenDescription","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pageId","type":"uint256"}],"name":"updateMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101006040523461040a57604080519081016001600160401b03811182821017610320576040908152600c82526b436f6e7472696275746f727360a01b602083015280519081016001600160401b0381118282101761032057604052600481526310d3d39560e21b602082015281516001600160401b038111610320575f54600181811c91168015610400575b602082101461030257601f811161039e575b50602092601f821160011461033f57928192935f92610334575b50508160011b915f199060031b1c1916175f555b80516001600160401b03811161032057600154600181811c91168015610316575b602082101461030257601f811161029f575b50602091601f821160011461023f579181925f92610234575b50508160011b915f199060031b1c1916176001555b60068054336001600160a01b03198216811790925560405191906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a36016608052601060a05261010060c05261101060e05265b5e620f480006007555f6008555f6009555f600a555f8052600c60205265b5e620f48000600260405f20015561448d908161040f82396080518181816102ec0152612484015260a051818181610a6501528181611dbc015281816121fe0152818161238b01528181612f250152818161303d015281816130e40152613137015260c0518181816119c501526120e8015260e051818181610b2301528181611d8201526124f20152f35b015190505f80610118565b601f1982169260015f52805f20915f5b8581106102875750836001951061026f575b505050811b0160015561012d565b01515f1960f88460031b161c191690555f8080610261565b9192602060018192868501518155019401920161024f565b60015f527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6601f830160051c810191602084106102f8575b601f0160051c01905b8181106102ed57506100ff565b5f81556001016102e0565b90915081906102d7565b634e487b7160e01b5f52602260045260245ffd5b90607f16906100ed565b634e487b7160e01b5f52604160045260245ffd5b015190505f806100b8565b601f198216935f8052805f20915f5b868110610386575083600195961061036e575b505050811b015f556100cc565b01515f1960f88460031b161c191690555f8080610361565b9192602060018192868501518155019401920161034e565b5f80527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563601f830160051c810191602084106103f6575b601f0160051c01905b8181106103eb575061009e565b5f81556001016103de565b90915081906103d5565b90607f169061008c565b5f80fdfe6080806040526004361015610012575f80fd5b5f3560e01c90816301ffc9a71461275c5750806306fdde03146126ba578063081812fc1461267e57806308d88aad1461261c578063095ea7b314612532578063111961f8146125155780631180a2a0146124db57806318160ddd146124be57806323b872dd146124a75780633c65963f1461246d5780633ccfd60b146123d757806342842e0e146123ae5780635248a5d5146123745780635c43217b146120ab5780635e57966d146120875780636352211e146120575780636e52611314611d3457806370a0823114611ce3578063715018a614611c8857806377d448a714611c6b5780638c830d9e14611c4c5780638da5cb5b14611c2457806395d89b4114611b5a5780639c09628d14611b3e5780639cf9c32614611b23578063a0c6d53714611b04578063a22cb46514611a69578063b7c0432914611a4a578063b88d4fde146119e8578063b8a3c6e6146119ae578063b94bac331461194d578063c87b56dd14610a44578063cd0c589614610a0c578063d169672c146109eb578063e2a04b621461099f578063e8709c4014610949578063e8a3d48514610676578063e985e9c51461061f578063eee32e4714610602578063f2c298be146102aa5763f2fde38b146101df575f80fd5b346102a65760203660031901126102a6576101f861287d565b610200613438565b6001600160a01b0316801561025257600680546001600160a01b0319811683179091556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3005b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b5f80fd5b346102a65760203660031901126102a65760043567ffffffffffffffff81116102a6576102db90369060040161285f565b6102e781511515612c7e565b6103147f000000000000000000000000000000000000000000000000000000000000000082511115612cd4565b5f5b8151811015610441576001600160f81b03196103328284612d6a565b5116600360fc1b8110159081610432575b811561040e575b81156103ea575b81156103dc575b81156103ce575b501561036d57600101610316565b60405162461bcd60e51b815260206004820152603360248201527f436f6e7472696275746f72733a206f6e6c7920616c7068616e756d657269632c604482015272103ab73232b939b1b7b9329610343cb83432b760691b6064820152608490fd5b602d60f81b1490508361035f565b605f60f81b81149150610358565b9050606160f81b81101580610400575b90610351565b50603d60f91b8111156103fa565b9050604160f81b81101580610424575b9061034a565b50602d60f91b81111561041e565b603960f81b8111159150610343565b5060405181519060208301918083835e600f9082019081528190036020019020546001600160a01b03166105be57335f52600e60205260405f209180519267ffffffffffffffff84116105aa5761049881546129dc565b601f8111610565575b50602093601f81116001146105035780602094955f916104f8575b508160011b915f199060031b1c19161790555b604051928391518091835e600f9082019081520301902080546001600160a01b03191633179055005b9050830151866104bc565b601f198116825f52855f20905f5b81811061054d57509060209596836001949310610535575b5050811b0190556104cf565b8501515f1960f88460031b161c191690558680610529565b85880151835560209788019760019093019201610511565b815f5260205f20601f860160051c810191602087106105a0575b601f0160051c01905b81811061059557506104a1565b5f8155600101610588565b909150819061057f565b634e487b7160e01b5f52604160045260245ffd5b606460405162461bcd60e51b815260206004820152602060248201527f436f6e7472696275746f72733a206e616d6520616c72656164792074616b656e6044820152fd5b346102a6575f3660031901126102a6576020600754604051908152f35b346102a65760403660031901126102a65761063861287d565b610640612893565b9060018060a01b03165f52600560205260405f209060018060a01b03165f52602052602060ff60405f2054166040519015158152f35b346102a6575f3660031901126102a6576109456020610796610933603d6108e961069f3061439c565b61079660036015604051936107376070868c808201947f494e46494e495445204f4e434841494e2053544f52592e204c4544474552204f86527f4620534543524554532e2054414b452054484520434f4e54524143542e20575260408401526f024aa22902ca7aaa9102ba7a9222997160851b60608401528051918291018484015e81015f838201520301601f1981018752866127eb565b602f8a6107426128e3565b92602d61079b60409d8e96875161075989826127eb565b600c81526b434f4e5452494255544f525360a01b878201528c89519161077f8b846127eb565b600683526514d0d493d31360d21b89840152613758565b61424a565b60065461080d90604a906107b7906001600160a01b031661439c565b9488519c8d997f7b226e616d65223a2022434f4e5452494255544f5253222c2264657363726970898c0152673a34b7b7111d101160c11b908b015251809160488b015e880161088b60f21b6048820152016132f7565b908051858201928184825e017f222c2262616e6e65725f696d616765223a2022646174613a696d6167652f737681526c19cade1b5b0ed8985cd94d8d0b609a1b8682015281519081848683015e01907f222c2266656174757265645f696d616765223a2022646174613a696d6167652f848301526e1cdd99cade1b5b0ed8985cd94d8d0b608a1b604d830152518092605c83015e0101907411161131b7b63630b137b930ba37b939911d102d9160591b84830152805192839101604483015e010162225d7d60e81b838201520301601c198101845201826127eb565b83519485917f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000828401528051918291018484015e81015f838201520301601f1981018452836127eb565b519182916020835260208301906127c7565b0390f35b346102a65760203660031901126102a6576004355f52600b60205261099560405f2061097481612a14565b906001808060a01b03910154166040519283926040845260408401906127c7565b9060208301520390f35b346102a65760203660031901126102a6576001600160a01b036109c061287d565b165f52600e6020526109456109d760405f20612a14565b6040519182916020835260208301906127c7565b346102a65760203660031901126102a657610a04613438565b600435600755005b346102a65760203660031901126102a6576001600160a01b03610a2d61287d565b165f52600d602052602060405f2054604051908152f35b346102a65760203660031901126102a6576004358060011c90610a8f610a8a7f000000000000000000000000000000000000000000000000000000000000000084612ee9565b613490565b91602060405193610ac7600383878180820195805191829101875e8101621c337160eb1b838201520301601c198101885201866127eb565b84610ad1856130d1565b93610b116023610ae088613127565b604051968791620313c960ed1b828401528051918291018484015e81015f838201520301601f1981018652856127eb565b6001868116036118e8575050505080517f0000000000000000000000000000000000000000000000000000000000000000906103e88202918083046103e814901517156118d4576103e88102908082046103e814901517156118d457610960610b7b920490612ee9565b60288101908181116118d4576103480180610320116118d4576078810290808204607814901517156118d457610c80900490610bb56128e3565b90610bbf90613490565b91610bc990613490565b604080517f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060208201527f30302f737667222076696577426f783d22302030203630302039303022207072918101919091527f657365727665417370656374526174696f3d22784d6964594d6964206d656574606082015261111f60f11b6080820152651e3232b3399f60d11b60828201527f3c636c6970506174682069643d227376672d636c6970223e3c7265637420783d60888201527f22302220793d2230222077696474683d2236303022206865696768743d22393060a88201526e1811179f1e17b1b634b82830ba341f60891b60c88201527f3c636c6970506174682069643d227363726f6c6c2d636c6970223e3c7265637460d78201527f20783d2235302220793d223630222077696474683d223530302220686569676860f7820152743a1e91191a181811179f1e17b1b634b82830ba341f60591b610117820152661e17b232b3399f60c91b61012c820152661e39ba3cb6329f60c91b6101338201527f2e7363726f6c6c2d636f6e7461696e6572207b77696474683a20313030253b2061013a8201526d6865696768743a20313030253b7d60901b61015a8201527f2e63796c696e6465722d636f6e7461696e6572207b77696474683a203630307061016882015270783b206865696768743a20363070783b7d60781b6101888201527f2e7363726f6c6c2d626f6479207b66696c6c3a20234635453542333b207374726101998201527f6f6b653a20626c61636b3b207374726f6b652d77696474683a20333b7d0000006101b98201527f2e63796c696e646572207b66696c6c3a20234635453542333b207374726f6b656101d68201527f3a20626c61636b3b207374726f6b652d77696474683a20333b7d0000000000006101f68201527f2e68616e646c65207b66696c6c3a20233842343531333b207374726f6b653a206102108201527f626c61636b3b207374726f6b652d77696474683a20333b7d00000000000000006102308201527f2e7469746c65207b20666f6e742d66616d696c793a20417269616c2c2073616e6102488201527f732d73657269663b20666f6e742d73697a653a20333070783b20746578742d616102688201526f6e63686f723a206d6964646c653b207d60801b6102888201527f2e617574686f72207b20666f6e742d66616d696c793a20417269616c2c2073616102988201527f6e732d73657269663b20666f6e742d73697a653a20323470783b20746578742d6102b882015270616e63686f723a206d6964646c653b207d60781b6102d88201527f2e636f6e74656e74207b666f6e742d66616d696c793a20417269616c2c2073616102e98201527f6e732d73657269663b20666f6e742d73697a653a20313670783b207d000000006103098201527f2e72756e6573207b666f6e742d66616d696c793a20417269616c2c2073616e736103258201527f2d73657269663b20666f6e742d73697a653a20313670783b207d000000000000610345820152671e17b9ba3cb6329f60c11b61035f8201527f3c6720636c69702d706174683d2275726c28237376672d636c697029223e000061036782015292839261106d61038585016135d8565b7f3c7265637420636c6173733d227363726f6c6c2d626f64792220783d2235302281527f20793d2235382e35222077696474683d2235303022206865696768743d223738602080830191909152631991179f60e11b60408301527f3c706174682069643d226c65667452756e65506174682220643d224d35352036604483015267183b1b9c1811179f60c11b60648301527f3c706174682069643d22726967687452756e65506174682220643d224d353333606c83015269101b183b1b9c1811179f60b11b608c830152731e3a32bc3a1031b630b9b99e91393ab732b9911f60611b60968301527f3c746578745061746820687265663d22236c65667452756e6550617468223e0060aa83015282519083019291818460c983015e0160c9015f815261119890614016565b6a1e17ba32bc3a2830ba341f60a91b81527f3c746578745061746820687265663d22236c65667452756e6550617468223e00600b8201528151908184602a83015e01602a015f81526111e99061408b565b6a1e17ba32bc3a2830ba341f60a91b81527f3c746578745061746820687265663d22236c65667452756e6550617468223e00600b8201528151908184602a83015e01602a015f815261123a90614100565b6a1e17ba32bc3a2830ba341f60a91b8152661e17ba32bc3a1f60c91b600b820152731e3a32bc3a1031b630b9b99e91393ab732b9911f60611b60128201527f3c746578745061746820687265663d2223726967687452756e6550617468223e60268201528151908184604683015e016046015f81526112b890614016565b6a1e17ba32bc3a2830ba341f60a91b81527f3c746578745061746820687265663d2223726967687452756e6550617468223e600b8201528151908184602b83015e01602b015f81526113099061408b565b906a1e17ba32bc3a2830ba341f60a91b8252600b82017f3c746578745061746820687265663d2223726967687452756e6550617468223e9052518092602b83015e01602b015f815261135a90614100565b6a1e17ba32bc3a2830ba341f60a91b8152661e17ba32bc3a1f60c91b600b8201527f3c6720636c69702d706174683d2275726c28237363726f6c6c2d636c697029226012820152601f60f91b60328201527f3c666f726569676e4f626a65637420783d2237302220793d223830222077696460338201527f74683d2234363022206865696768743d2232343030223e00000000000000000060538201527f3c64697620786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3139606a8201527f39392f7868746d6c22207374796c653d22666f6e742d66616d696c793a204172608a8201527f69616c2c2073616e732d73657269663b20666f6e742d73697a653a203136707860aa8201527f3b206c696e652d6865696768743a20312e353b206f766572666c6f772d77726160ca8201527f703a20627265616b2d776f72643b20776f72642d627265616b3a20627265616b60ea8201526716bbb7b9321d911f60c11b61010a820152855190816020880161011283015e651e17b234bb1f60d11b61011292909101918201526f1e17b337b932b4b3b727b13532b1ba1f60811b6101188201527f3c616e696d6174655472616e73666f726d206174747269627574654e616d653d6101288201527f227472616e73666f726d2220747970653d227472616e736c617465222076616c6101488201526e7565733d2230203830303b2030202d60881b610168820152815191829060200161017783015e0161011201661110323ab91e9160c91b606582015281516020819301606c83015e7f732220726570656174436f756e743d22696e646566696e697465222f3e000000606c9290910191820152631e17b39f60e11b60898201527f3c6720636c6173733d2263796c696e6465722d636f6e7461696e6572223e0000608d8201526116049060ab0161361b565b61160d90614175565b611616906141df565b7f3c7465787420636c6173733d227469746c652220783d223330302220793d22338152751c111f21a7a72a2924a12aaa27a9299e17ba32bc3a1f60511b6020820152631e17b39f60e11b60368201527f3c6720636c6173733d2263796c696e6465722d636f6e7461696e657222207472603a8201527f616e73666f726d3d227472616e736c61746528302c2038343029223e00000000605a8201526116bd9060760161361b565b6116c690614175565b6116cf906141df565b7f3c7465787420636c6173733d22617574686f722220783d223330302220793d22815263199c111f60e11b60208201528551908160208801602483015e0160248101661e17ba32bc3a1f60c91b9052602b8101631e17b39f60e11b9052602f8101631e17b39f60e11b905260338101651e17b9bb339f60d11b905203602401600a198101825260150161176290826127eb565b61176b9061424a565b9061177583613490565b9261177f90613490565b604051948594693d913730b6b2911d101160b11b602087015280516020819201602a88015e85016270cd5360e91b602a82015281516020819301602d83015e01602a016201116160ed1b6003820152750113232b9b1b934b83a34b7b7111d10112a37b5b2b7160551b600682015281516020819301601c83015e01600301601981016801039b1b934b83a1d160bd1b905281516020819301602283015e016019016201116160ed1b6009820152600c01611838906132f7565b81516020819301825e0161227d60f01b815203601d198101825260020161185f90826127eb565b6118689061424a565b6040518091602082017f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000905280516020819201603d84015e8101603d81015f905203603d01601f19810182526118be90826127eb565b60405180916020825260208201610945916127c7565b634e487b7160e01b5f52601160045260245ffd5b61176b9396506003610796939260208061190461193c95613490565b6040519687945180918487015e8401908282015f8152815193849201905e01016270cdd160e91b815203601c198101845201826127eb565b8095846119476128e3565b92613758565b346102a65760203660031901126102a6576004355f52600c60205261199f60405f2061197881612a14565b90600260018060a01b036001830154169101546040519384936060855260608501906127c7565b91602084015260408301520390f35b346102a6575f3660031901126102a65760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b346102a65760803660031901126102a657611a0161287d565b611a09612893565b6064359167ffffffffffffffff83116102a657366023840112156102a657611a3e611a48933690602481600401359101612829565b91604435916131de565b005b346102a65760203660031901126102a6576109456109d7600435613127565b346102a65760403660031901126102a657611a8261287d565b602435908115158092036102a6576001600160a01b0316908115611af157335f52600560205260405f20825f5260205260405f2060ff1981541660ff83161790556040519081527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a3005b50630b61174360e31b5f5260045260245ffd5b346102a65760203660031901126102a6576109456109d76004356130d1565b346102a6575f3660031901126102a6576109456109d76128e3565b346102a65760203660031901126102a657611a48600435613038565b346102a6575f3660031901126102a6576040515f600154611b7a816129dc565b8084529060018116908115611c005750600114611ba2575b610945836109d7818503826127eb565b60015f9081527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6939250905b808210611be6575090915081016020016109d7611b92565b919260018160209254838588010152019101909291611bce565b60ff191660208086019190915291151560051b840190910191506109d79050611b92565b346102a6575f3660031901126102a6576006546040516001600160a01b039091168152602090f35b346102a65760203660031901126102a6576109456109d7600435612ef3565b346102a6575f3660031901126102a6576020600854604051908152f35b346102a6575f3660031901126102a657611ca0613438565b600680546001600160a01b031981169091555f906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b346102a65760203660031901126102a6576001600160a01b03611d0461287d565b168015611d21575f526003602052602060405f2054604051908152f35b6322718ad960e21b5f525f60045260245ffd5b346102a65760603660031901126102a65760043567ffffffffffffffff81116102a657611d6590369060040161285f565b611d6d612893565b60443590611d7d83511515612c7e565b611daa7f000000000000000000000000000000000000000000000000000000000000000084511115612cd4565b611db2613438565b6009549282611de27f00000000000000000000000000000000000000000000000000000000000000008096612ee9565b111561200457825f52600c602052611dfd60405f20546129dc565b611faf57825f52600c60205260405f209080519067ffffffffffffffff82116105aa57611e2a83546129dc565b601f8111611f6a575b50602090601f8311600114611efe579180611a48979492611ea296945f92611ef3575b50508160011b915f199060031b1c19161790555b5f848152600c602052604090206001810180546001600160a01b0319166001600160a01b039093169290921790915560020154612d8f565b60011c815f52600c60205260018060a01b03600160405f200154165f52600d60205260405f20611ed3828254612da2565b9055335f52600d602052611eec60405f20918254612da2565b9055613038565b015190508880611e56565b90601f19831691845f52815f20925f5b818110611f525750926001928592611ea29896611a489b989610611f3a575b505050811b019055611e6a565b01515f1960f88460031b161c19169055888080611f2d565b92936020600181928786015181550195019301611f0e565b835f5260205f20601f840160051c81019160208510611fa5575b601f0160051c01905b818110611f9a5750611e33565b5f8155600101611f8d565b9091508190611f84565b60405162461bcd60e51b815260206004820152602760248201527f436f6e7472696275746f72733a207061676520697320616c72656164792066696044820152661b985b1a5e995960ca1b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f436f6e7472696275746f72733a206e656564206d6f726520636f6e747269627560448201526474696f6e7360d81b6064820152608490fd5b346102a65760203660031901126102a657602061207560043561332d565b6040516001600160a01b039091168152f35b346102a65760203660031901126102a6576109456109d76120a661287d565b612daf565b60203660031901126102a65760043567ffffffffffffffff81116102a6576120d790369060040161285f565b6120e381511515612c7e565b6121107f000000000000000000000000000000000000000000000000000000000000000082511115612cd4565b6008545f52600c602052600260405f2001543403612313576009545f52600b60205260405f20815167ffffffffffffffff81116105aa5761215182546129dc565b601f81116122ce575b50602092601f821160011461226f57928192935f92612264575b50508160011b915f199060031b1c19161790555b6009545f908152600b6020526040902060010180546001600160a01b03191633908117909155600a546121ba91613361565b6121d26121c8600a54612d2a565b80600a5533613361565b6121dd600a54612d2a565b600a556121eb600954612d2a565b80600955600854906121fc82613038565b7f000000000000000000000000000000000000000000000000000000000000000090811561225057061561222c57005b61223590612d2a565b80600855600754905f52600c602052600260405f2001555f80f35b634e487b7160e01b5f52601260045260245ffd5b015190508380612174565b601f19821693835f52805f20915f5b8681106122b6575083600195961061229e575b505050811b019055612188565b01515f1960f88460031b161c19169055838080612291565b9192602060018192868501518155019401920161227e565b825f5260205f20601f830160051c81019160208410612309575b601f0160051c01905b8181106122fe575061215a565b5f81556001016122f1565b90915081906122e8565b60405162461bcd60e51b815260206004820152603360248201527f436f6e7472696275746f72733a206e6f7420726967687420616d6f756e74206f604482015272662045544820746f20636f6e7472696275746560681b6064820152608490fd5b346102a6575f3660031901126102a65760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b346102a657611a486123bf366128a9565b90604051926123cf6020856127eb565b5f84526131de565b346102a6575f3660031901126102a657335f52600d6020525f8080806040812054338252600d602052816040812055335af1612411612c4f565b501561241957005b60405162461bcd60e51b815260206004820152602660248201527f436f6e7472696275746f72733a20726577617264207769746864726177616c2060448201526519985a5b195960d21b6064820152608490fd5b346102a6575f3660031901126102a65760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b346102a657611a486124b8366128a9565b91612ab4565b346102a6575f3660031901126102a6576020600a54604051908152f35b346102a6575f3660031901126102a65760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b346102a6575f3660031901126102a6576020600954604051908152f35b346102a65760403660031901126102a65761254b61287d565b6024356125578161332d565b33151580612609575b806125dc575b6125c95781906001600160a01b0384811691167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9255f80a45f90815260046020526040902080546001600160a01b0319166001600160a01b03909216919091179055005b63a9fbf51f60e01b5f523360045260245ffd5b506001600160a01b0381165f90815260056020908152604080832033845290915290205460ff1615612566565b506001600160a01b038116331415612560565b346102a65760203660031901126102a65760043567ffffffffffffffff81116102a65761264f602091369060040161285f565b8160405191805191829101835e600f90820190815281900382019020546040516001600160a01b039091168152f35b346102a65760203660031901126102a65760043561269b8161332d565b505f526004602052602060018060a01b0360405f205416604051908152f35b346102a6575f3660031901126102a6576040515f80546126d9816129dc565b8084529060018116908115611c00575060011461270057610945836109d7818503826127eb565b5f8080527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563939250905b808210612742575090915081016020016109d7611b92565b91926001816020925483858801015201910190929161272a565b346102a65760203660031901126102a6576004359063ffffffff60e01b82168092036102a6576020916380ac58cd60e01b81149081156127b6575b81156127a5575b5015158152f35b6301ffc9a760e01b1490508361279e565b635b5e139f60e01b81149150612797565b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b90601f8019910116810190811067ffffffffffffffff8211176105aa57604052565b67ffffffffffffffff81116105aa57601f01601f191660200190565b9291926128358261280d565b9161284360405193846127eb565b8294818452818301116102a6578281602093845f960137010152565b9080601f830112156102a65781602061287a93359101612829565b90565b600435906001600160a01b03821682036102a657565b602435906001600160a01b03821682036102a657565b60609060031901126102a6576004356001600160a01b03811681036102a657906024356001600160a01b03811681036102a6579060443590565b604051906128f260e0836127eb565b60c082527f9b86e19b9ae19aaee19b81e19aa4e19b86e19b86e19b9ae19aaee19b81e19aa460c0837fe19b9ae19aaee19b81e19aa4e19b86e19b86e19b9ae19aaee19b81e19aa4e19b60208201527f86e19b86e19b9ae19aaee19b81e19aa4e19b86e19b86e19b9ae19aaee19b81e160408201527f9aa4e19b86e19b86e19b9ae19aaee19b81e19aa4e19b86e19b86e19b9ae19aae60608201527fe19b81e19aa4e19b86e19b86e19b9ae19aaee19b81e19aa4e19b86e19b86e19b60808201527f9ae19aaee19b81e19aa4e19b86e19b86e19b9ae19aaee19b81e19aa4e19b86e160a08201520152565b90600182811c92168015612a0a575b60208310146129f657565b634e487b7160e01b5f52602260045260245ffd5b91607f16916129eb565b9060405191825f825492612a27846129dc565b8084529360018116908115612a925750600114612a4e575b50612a4c925003836127eb565b565b90505f9291925260205f20905f915b818310612a76575050906020612a4c928201015f612a3f565b6020919350806001915483858901015201910190918492612a5d565b905060209250612a4c94915060ff191682840152151560051b8201015f612a3f565b6001600160a01b0390911691908215612c3c575f828152600260205260409020546001600160a01b031692829033151580612ba7575b5084612b74575b805f52600360205260405f2060018154019055815f52600260205260405f20816001600160601b0360a01b825416179055847fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001600160a01b0316808303612b5c57505050565b6364283d7b60e01b5f5260045260245260445260645ffd5b5f82815260046020526040902080546001600160a01b0319169055845f52600360205260405f205f198154019055612af1565b90915080612beb575b15612bbd5782905f612aea565b8284612bd557637e27328960e01b5f5260045260245ffd5b63177e802f60e01b5f523360045260245260445ffd5b503384148015612c1a575b80612bb057505f838152600460205260409020546001600160a01b03163314612bb0565b505f84815260056020908152604080832033845290915290205460ff16612bf6565b633250574960e11b5f525f60045260245ffd5b3d15612c79573d90612c608261280d565b91612c6e60405193846127eb565b82523d5f602084013e565b606090565b15612c8557565b60405162461bcd60e51b815260206004820152602160248201527f436f6e7472696275746f72733a20696e707574207465787420697320656d70746044820152607960f81b6064820152608490fd5b15612cdb57565b60405162461bcd60e51b815260206004820152602160248201527f436f6e7472696275746f72733a20746f6f206d616e79206368617261637465726044820152607360f81b6064820152608490fd5b5f1981146118d45760010190565b90612d428261280d565b612d4f60405191826127eb565b8281528092612d60601f199161280d565b0190602036910137565b908151811015612d7b570160200190565b634e487b7160e01b5f52603260045260245ffd5b818102929181159184041417156118d457565b919082018092116118d457565b604051906001600160601b03199060601b16602082015260148152612dd56034826127eb565b604090815190612de583836127eb565b601082526f181899199a1a9b1b9c1cb0b131b232b360811b6020830152825192612e0f81856127eb565b601684526020840190601f1901368237835115612d7b5760309053825160011015612d7b57607860218401535f5b600a8110612e4b5750505090565b6001600160f81b0319612e7160ff600f612e658587612d6a565b5160fc1c161685612d6a565b5116908060011b91818304600214821517156118d4578260020190816002116118d457612ea1905f1a9187612d6a565b536001600160f81b0319612ec5600f612eba8487612d6a565b5160f81c1686612d6a565b511691600301806003116118d457612ee26001935f1a9187612d6a565b5301612e3d565b8115612250570490565b805f52600c602052612f0860405f20546129dc565b15612f20575f52600c60205261287a60405f20612a14565b612f4b7f00000000000000000000000000000000000000000000000000000000000000008092612d8f565b6060915f905b808210612f5e5750505090565b909192835f52600b60205260405f20602060405192805191829101602085015e820160208101905f82525f928054612f95816129dc565b9360018216918215613019575050600114612fde575b50505081612fd06001809484600160fd1b612fd6965203601e198101845201826127eb565b94612d2a565b920190612f51565b909192505f5260205f205f905b8382106130035750500160200181612fd06001612fab565b6001816020925483858701015201910190612feb565b60ff19169052505081151590910201602001905081612fd06001612fab565b6130637f00000000000000000000000000000000000000000000000000000000000000008092612d8f565b908160011b91808304600214901517156118d4578060011b90808204600214901517156118d4576130949082612da2565b5f1981019081116118d4577f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c9160409182519182526020820152a1565b6001818116036131115761310c61287a917f00000000000000000000000000000000000000000000000000000000000000009060011c612ee9565b612ef3565b60011c5f52600b60205261287a60405f20612a14565b6001818116036131bc5761315f907f00000000000000000000000000000000000000000000000000000000000000009060011c612ee9565b5f908152600c60205260409020600101546001600160a01b03165b60018060a01b03811690815f52600e60205261319960405f20546129dc565b156131b257505f52600e60205261287a60405f20612a14565b61287a9150612daf565b600190811c5f908152600b6020526040902001546001600160a01b031661317a565b92916131eb818386612ab4565b813b6131f8575b50505050565b604051630a85bd0160e11b81523360048201526001600160a01b03948516602482015260448101919091526080606482015292169190602090829081906132439060848301906127c7565b03815f865af15f91816132b2575b5061327f575061325f612c4f565b8051908161327a5782633250574960e11b5f5260045260245ffd5b602001fd5b6001600160e01b03191663757a42ff60e11b016132a057505f8080806131f2565b633250574960e11b5f5260045260245ffd5b9091506020813d6020116132ef575b816132ce602093836127eb565b810103126102a657516001600160e01b0319811681036102a657905f613251565b3d91506132c1565b7f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b626173815263194d8d0b60e21b602082015260240190565b5f818152600260205260409020546001600160a01b031690811561334f575090565b637e27328960e01b5f5260045260245ffd5b6001600160a01b0316908115612c3c575f818152600260205260409020546001600160a01b03168015159290919083613405575b805f52600360205260405f2060018154019055815f52600260205260405f20816001600160601b0360a01b825416179055827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4506133f257565b6339e3563760e11b5f525f60045260245ffd5b5f82815260046020526040902080546001600160a01b0319169055825f52600360205260405f205f198154019055613395565b6006546001600160a01b0316330361344c57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b805f9172184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8210156135b5575b806d04ee2d6d415b85acef8100000000600a92101561359a575b662386f26fc10000811015613586575b6305f5e100811015613575575b612710811015613566575b6064811015613558575b101561354d575b600a602161351560018501612d38565b938401015b5f1901916f181899199a1a9b1b9c1cb0b131b232b360811b8282061a835304801561354857600a909161351a565b505090565b600190910190613505565b6064600291049301926134fe565b612710600491049301926134f4565b6305f5e100600891049301926134e9565b662386f26fc10000601091049301926134dc565b6d04ee2d6d415b85acef8100000000602091049301926134cc565b506040915072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b81046134b2565b7f3c726563742077696474683d223130302522206865696768743d223130302522815270103334b6361e9111b3333333333311179f60791b602082015260310190565b7f3c7265637420636c6173733d2268616e646c652220783d22312e352220793d2281527f31312e35222077696474683d22333722206865696768743d223337222072783d60208201526f111c171a9110393c9e911c171a91179f60811b604082015260500190565b7f3c7265637420636c6173733d2268616e646c652220783d223336312e3522207981527f3d2231312e35222077696474683d22333722206865696768743d2233372220726020820152713c1e911c171a9110393c9e911c171a91179f60711b604082015260520190565b7f3c7265637420636c6173733d2263796c696e6465722220783d2232302220793d81527f22312e35222077696474683d2233363022206865696768743d223537222072786020820152721e91191c171a9110393c9e91191c171a91179f60691b604082015260530190565b604080517f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060208201527f30302f737667222076696577426f783d22302030203430302034303022207072918101919091527f657365727665417370656374526174696f3d22784d6964594d6964206d656574606082015261111f60f11b6080820152651e3232b3399f60d11b60828201527f3c636c6970506174682069643d22636f6e74656e742d636c6970223e3c72656360888201527f7420783d2232302220793d223630222077696474683d2233363022206865696760a882015274343a1e91191c1811179f1e17b1b634b82830ba341f60591b60c8820152661e17b232b3399f60c91b60dd820152661e39ba3cb6329f60c91b60e48201527f2e7363726f6c6c2d636f6e7461696e6572207b2077696474683a20313030253b60eb8201526f206865696768743a20313030253b207d60801b61010b8201527f2e63796c696e6465722d636f6e7461696e6572207b2077696474683a2034303061011b8201527270783b206865696768743a20363070783b207d60681b61013b8201527f2e7363726f6c6c2d626f6479207b2066696c6c3a20234635453542333b20737461014e8201527f726f6b653a20626c61636b3b207374726f6b652d77696474683a20323b207d0061016e8201527f2e63796c696e646572207b2066696c6c3a20234635453542333b207374726f6b61018d8201527f653a20626c61636b3b207374726f6b652d77696474683a20323b207d000000006101ad8201527f2e68616e646c65207b2066696c6c3a20233842343531333b207374726f6b653a6101c98201527f20626c61636b3b207374726f6b652d77696474683a20323b207d0000000000006101e98201527f2e7469746c65207b20666f6e742d66616d696c793a20417269616c2c2073616e6102038201527f732d73657269663b20666f6e742d73697a653a20323470783b20746578742d616102238201526f6e63686f723a206d6964646c653b207d60801b6102438201527f2e617574686f72207b20666f6e742d66616d696c793a20417269616c2c2073616102538201527f6e732d73657269663b20666f6e742d73697a653a20323070783b20746578742d61027382015270616e63686f723a206d6964646c653b207d60781b6102938201527f2e636f6e74656e74207b20666f6e742d66616d696c793a20417269616c2c20736102a48201527f616e732d73657269663b20666f6e742d73697a653a20313470783b2066696c6c6102c4820152693a20626c61636b3b207d60b01b6102e48201527f2e72756e6573207b20666f6e742d66616d696c793a20417269616c2c2073616e6102ee8201527f732d73657269663b20666f6e742d73697a653a20313270783b206f706163697461030e82015268793a20302e373b207d60b81b61032e820152671e17b9ba3cb6329f60c11b6103378201529384939290613b9a61033f86016135d8565b7f3c7265637420636c6173733d227363726f6c6c2d626f64792220783d2235302281527f20793d2235382e35222077696474683d2233303022206865696768743d223238602080830191909152631991179f60e11b60408301527f3c7465787420636c6173733d2272756e65732220783d2236302220793d22363060448301527f222077726974696e672d6d6f64653d2274622220746578744c656e6774683d22606483015264191c18111f60d91b6084830152825190830192918184608983015e019060898201661e17ba32bc3a1f60c91b9052609082017f3c7465787420636c6173733d2272756e65732220783d223334302220793d2236905260b082017f30222077726974696e672d6d6f64653d2274622220746578744c656e6774683d90526511191c18111f60d11b60d083015251809260d683015e661e17ba32bc3a1f60c91b60d692909101918201527f3c6720636c69702d706174683d2275726c2823636f6e74656e742d636c69702960dd82015261111f60f11b60fd8201527f3c666f726569676e4f626a65637420783d2237302220793d223730222077696460ff820152753a341e91191b1811103432b4b3b43a1e91191b18111f60511b61011f8201527f3c64697620786d6c6e733d22687474703a2f2f7777772e77332e6f72672f31396101358201527f39392f7868746d6c22207374796c653d22666f6e742d66616d696c793a2041726101558201527f69616c2c2073616e732d73657269663b20666f6e742d73697a653a20313570786101758201527f3b206c696e652d6865696768743a20312e353b206f766572666c6f772d7772616101958201527f703a20627265616b2d776f72643b20776f72642d627265616b3a20627265616b6101b58201526716bbb7b9321d911f60c11b6101d582015281519160898201918391602001906101dd015e651e17b234bb1f60d11b61015492909101918201526f1e17b337b932b4b3b727b13532b1ba1f60811b61015a820152631e17b39f60e11b61016a8201527f3c6720636c6173733d2263796c696e6465722d636f6e7461696e6572223e000061016e820152613eb99061018c0161361b565b613ec290613683565b613ecb906136ed565b7f3c7465787420636c6173733d227469746c652220783d223230302220793d22338152621c111f60e91b602082015281516020819301602383015e0160238101661e17ba32bc3a1f60c91b9052602a8101631e17b39f60e11b9052602e81017f3c6720636c6173733d2263796c696e6465722d636f6e7461696e6572222074729052604e81017f616e73666f726d3d227472616e736c61746528302c2033343029223e000000009052606a01613f809061361b565b613f8990613683565b613f92906136ed565b7f3c7465787420636c6173733d22617574686f722220783d223230302220793d22815263199c111f60e11b602082015281516020819301602483015e0160248101661e17ba32bc3a1f60c91b9052602b8101631e17b39f60e11b9052602f8101651e17b9bb339f60d11b905203602401600e198101825260110161287a90826127eb565b7f3c616e696d617465206174747269627574654e616d653d2273746172744f666681527f736574222066726f6d3d22302220746f3d222d34303022206475723d2231357360208201527f2220726570656174436f756e743d22696e646566696e697465222f3e000000006040820152605c0190565b7f3c616e696d617465206174747269627574654e616d653d2273746172744f666681527f736574222066726f6d3d223430302220746f3d223022206475723d223135732260208201527f20726570656174436f756e743d22696e646566696e697465222f3e00000000006040820152605b0190565b7f3c616e696d617465206174747269627574654e616d653d2273746172744f666681527f736574222066726f6d3d223830302220746f3d2234303022206475723d22313560208201527f732220726570656174436f756e743d22696e646566696e697465222f3e0000006040820152605d0190565b7f3c7265637420636c6173733d2268616e646c652220783d223536312e3522207981527f3d2231312e35222077696474683d22333722206865696768743d2233372220726020820152713c1e911c171a9110393c9e911c171a91179f60711b604082015260520190565b7f3c7265637420636c6173733d2263796c696e6465722220783d2232302220793d81527f22312e35222077696474683d2235363022206865696768743d223537222072786020820152721e91191c171a9110393c9e91191c171a91179f60691b604082015260530190565b9081511561438657604051916142616060846127eb565b604083527f4142434445464748494a4b4c4d4e4f505152535455565758595a61626364656660208401527f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f60408401528051600281018091116118d457600390046001600160fe1b03811681036118d4576142de9060021b612d38565b90602082019080815182019560208701908151925f83525b88811061433857505060039394959650525106806001146143265760021461431c575090565b603d905f19015390565b50603d90815f19820153600119015390565b600360049199969901986001603f8b5182828260121c16870101518453828282600c1c16870101518385015382828260061c16870101516002850153168401015160038201530194976142f6565b90506040516143966020826127eb565b5f815290565b806143a7602a61280d565b916143b560405193846127eb565b602a83526143c3602a61280d565b6020840190601f1901368237835115612d7b5760309053825160011015612d7b576078602184015360295b6001811161441657506143ff575090565b63e22e27eb60e01b5f52600452601460245260445ffd5b90600f81166010811015612d7b576f181899199a1a9b1b9c1cb0b131b232b360811b901a6144448386612d6a565b5360041c9080156118d4575f19016143ee56fea264697066735822122083090297fff147107bd847abebefe6b3aadf2fb7d13dd233a9c7644d48c802c464736f6c634300081a0033

Deployed Bytecode

0x6080806040526004361015610012575f80fd5b5f3560e01c90816301ffc9a71461275c5750806306fdde03146126ba578063081812fc1461267e57806308d88aad1461261c578063095ea7b314612532578063111961f8146125155780631180a2a0146124db57806318160ddd146124be57806323b872dd146124a75780633c65963f1461246d5780633ccfd60b146123d757806342842e0e146123ae5780635248a5d5146123745780635c43217b146120ab5780635e57966d146120875780636352211e146120575780636e52611314611d3457806370a0823114611ce3578063715018a614611c8857806377d448a714611c6b5780638c830d9e14611c4c5780638da5cb5b14611c2457806395d89b4114611b5a5780639c09628d14611b3e5780639cf9c32614611b23578063a0c6d53714611b04578063a22cb46514611a69578063b7c0432914611a4a578063b88d4fde146119e8578063b8a3c6e6146119ae578063b94bac331461194d578063c87b56dd14610a44578063cd0c589614610a0c578063d169672c146109eb578063e2a04b621461099f578063e8709c4014610949578063e8a3d48514610676578063e985e9c51461061f578063eee32e4714610602578063f2c298be146102aa5763f2fde38b146101df575f80fd5b346102a65760203660031901126102a6576101f861287d565b610200613438565b6001600160a01b0316801561025257600680546001600160a01b0319811683179091556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05f80a3005b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b5f80fd5b346102a65760203660031901126102a65760043567ffffffffffffffff81116102a6576102db90369060040161285f565b6102e781511515612c7e565b6103147f000000000000000000000000000000000000000000000000000000000000001682511115612cd4565b5f5b8151811015610441576001600160f81b03196103328284612d6a565b5116600360fc1b8110159081610432575b811561040e575b81156103ea575b81156103dc575b81156103ce575b501561036d57600101610316565b60405162461bcd60e51b815260206004820152603360248201527f436f6e7472696275746f72733a206f6e6c7920616c7068616e756d657269632c604482015272103ab73232b939b1b7b9329610343cb83432b760691b6064820152608490fd5b602d60f81b1490508361035f565b605f60f81b81149150610358565b9050606160f81b81101580610400575b90610351565b50603d60f91b8111156103fa565b9050604160f81b81101580610424575b9061034a565b50602d60f91b81111561041e565b603960f81b8111159150610343565b5060405181519060208301918083835e600f9082019081528190036020019020546001600160a01b03166105be57335f52600e60205260405f209180519267ffffffffffffffff84116105aa5761049881546129dc565b601f8111610565575b50602093601f81116001146105035780602094955f916104f8575b508160011b915f199060031b1c19161790555b604051928391518091835e600f9082019081520301902080546001600160a01b03191633179055005b9050830151866104bc565b601f198116825f52855f20905f5b81811061054d57509060209596836001949310610535575b5050811b0190556104cf565b8501515f1960f88460031b161c191690558680610529565b85880151835560209788019760019093019201610511565b815f5260205f20601f860160051c810191602087106105a0575b601f0160051c01905b81811061059557506104a1565b5f8155600101610588565b909150819061057f565b634e487b7160e01b5f52604160045260245ffd5b606460405162461bcd60e51b815260206004820152602060248201527f436f6e7472696275746f72733a206e616d6520616c72656164792074616b656e6044820152fd5b346102a6575f3660031901126102a6576020600754604051908152f35b346102a65760403660031901126102a65761063861287d565b610640612893565b9060018060a01b03165f52600560205260405f209060018060a01b03165f52602052602060ff60405f2054166040519015158152f35b346102a6575f3660031901126102a6576109456020610796610933603d6108e961069f3061439c565b61079660036015604051936107376070868c808201947f494e46494e495445204f4e434841494e2053544f52592e204c4544474552204f86527f4620534543524554532e2054414b452054484520434f4e54524143542e20575260408401526f024aa22902ca7aaa9102ba7a9222997160851b60608401528051918291018484015e81015f838201520301601f1981018752866127eb565b602f8a6107426128e3565b92602d61079b60409d8e96875161075989826127eb565b600c81526b434f4e5452494255544f525360a01b878201528c89519161077f8b846127eb565b600683526514d0d493d31360d21b89840152613758565b61424a565b60065461080d90604a906107b7906001600160a01b031661439c565b9488519c8d997f7b226e616d65223a2022434f4e5452494255544f5253222c2264657363726970898c0152673a34b7b7111d101160c11b908b015251809160488b015e880161088b60f21b6048820152016132f7565b908051858201928184825e017f222c2262616e6e65725f696d616765223a2022646174613a696d6167652f737681526c19cade1b5b0ed8985cd94d8d0b609a1b8682015281519081848683015e01907f222c2266656174757265645f696d616765223a2022646174613a696d6167652f848301526e1cdd99cade1b5b0ed8985cd94d8d0b608a1b604d830152518092605c83015e0101907411161131b7b63630b137b930ba37b939911d102d9160591b84830152805192839101604483015e010162225d7d60e81b838201520301601c198101845201826127eb565b83519485917f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000828401528051918291018484015e81015f838201520301601f1981018452836127eb565b519182916020835260208301906127c7565b0390f35b346102a65760203660031901126102a6576004355f52600b60205261099560405f2061097481612a14565b906001808060a01b03910154166040519283926040845260408401906127c7565b9060208301520390f35b346102a65760203660031901126102a6576001600160a01b036109c061287d565b165f52600e6020526109456109d760405f20612a14565b6040519182916020835260208301906127c7565b346102a65760203660031901126102a657610a04613438565b600435600755005b346102a65760203660031901126102a6576001600160a01b03610a2d61287d565b165f52600d602052602060405f2054604051908152f35b346102a65760203660031901126102a6576004358060011c90610a8f610a8a7f000000000000000000000000000000000000000000000000000000000000001084612ee9565b613490565b91602060405193610ac7600383878180820195805191829101875e8101621c337160eb1b838201520301601c198101885201866127eb565b84610ad1856130d1565b93610b116023610ae088613127565b604051968791620313c960ed1b828401528051918291018484015e81015f838201520301601f1981018652856127eb565b6001868116036118e8575050505080517f0000000000000000000000000000000000000000000000000000000000001010906103e88202918083046103e814901517156118d4576103e88102908082046103e814901517156118d457610960610b7b920490612ee9565b60288101908181116118d4576103480180610320116118d4576078810290808204607814901517156118d457610c80900490610bb56128e3565b90610bbf90613490565b91610bc990613490565b604080517f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060208201527f30302f737667222076696577426f783d22302030203630302039303022207072918101919091527f657365727665417370656374526174696f3d22784d6964594d6964206d656574606082015261111f60f11b6080820152651e3232b3399f60d11b60828201527f3c636c6970506174682069643d227376672d636c6970223e3c7265637420783d60888201527f22302220793d2230222077696474683d2236303022206865696768743d22393060a88201526e1811179f1e17b1b634b82830ba341f60891b60c88201527f3c636c6970506174682069643d227363726f6c6c2d636c6970223e3c7265637460d78201527f20783d2235302220793d223630222077696474683d223530302220686569676860f7820152743a1e91191a181811179f1e17b1b634b82830ba341f60591b610117820152661e17b232b3399f60c91b61012c820152661e39ba3cb6329f60c91b6101338201527f2e7363726f6c6c2d636f6e7461696e6572207b77696474683a20313030253b2061013a8201526d6865696768743a20313030253b7d60901b61015a8201527f2e63796c696e6465722d636f6e7461696e6572207b77696474683a203630307061016882015270783b206865696768743a20363070783b7d60781b6101888201527f2e7363726f6c6c2d626f6479207b66696c6c3a20234635453542333b207374726101998201527f6f6b653a20626c61636b3b207374726f6b652d77696474683a20333b7d0000006101b98201527f2e63796c696e646572207b66696c6c3a20234635453542333b207374726f6b656101d68201527f3a20626c61636b3b207374726f6b652d77696474683a20333b7d0000000000006101f68201527f2e68616e646c65207b66696c6c3a20233842343531333b207374726f6b653a206102108201527f626c61636b3b207374726f6b652d77696474683a20333b7d00000000000000006102308201527f2e7469746c65207b20666f6e742d66616d696c793a20417269616c2c2073616e6102488201527f732d73657269663b20666f6e742d73697a653a20333070783b20746578742d616102688201526f6e63686f723a206d6964646c653b207d60801b6102888201527f2e617574686f72207b20666f6e742d66616d696c793a20417269616c2c2073616102988201527f6e732d73657269663b20666f6e742d73697a653a20323470783b20746578742d6102b882015270616e63686f723a206d6964646c653b207d60781b6102d88201527f2e636f6e74656e74207b666f6e742d66616d696c793a20417269616c2c2073616102e98201527f6e732d73657269663b20666f6e742d73697a653a20313670783b207d000000006103098201527f2e72756e6573207b666f6e742d66616d696c793a20417269616c2c2073616e736103258201527f2d73657269663b20666f6e742d73697a653a20313670783b207d000000000000610345820152671e17b9ba3cb6329f60c11b61035f8201527f3c6720636c69702d706174683d2275726c28237376672d636c697029223e000061036782015292839261106d61038585016135d8565b7f3c7265637420636c6173733d227363726f6c6c2d626f64792220783d2235302281527f20793d2235382e35222077696474683d2235303022206865696768743d223738602080830191909152631991179f60e11b60408301527f3c706174682069643d226c65667452756e65506174682220643d224d35352036604483015267183b1b9c1811179f60c11b60648301527f3c706174682069643d22726967687452756e65506174682220643d224d353333606c83015269101b183b1b9c1811179f60b11b608c830152731e3a32bc3a1031b630b9b99e91393ab732b9911f60611b60968301527f3c746578745061746820687265663d22236c65667452756e6550617468223e0060aa83015282519083019291818460c983015e0160c9015f815261119890614016565b6a1e17ba32bc3a2830ba341f60a91b81527f3c746578745061746820687265663d22236c65667452756e6550617468223e00600b8201528151908184602a83015e01602a015f81526111e99061408b565b6a1e17ba32bc3a2830ba341f60a91b81527f3c746578745061746820687265663d22236c65667452756e6550617468223e00600b8201528151908184602a83015e01602a015f815261123a90614100565b6a1e17ba32bc3a2830ba341f60a91b8152661e17ba32bc3a1f60c91b600b820152731e3a32bc3a1031b630b9b99e91393ab732b9911f60611b60128201527f3c746578745061746820687265663d2223726967687452756e6550617468223e60268201528151908184604683015e016046015f81526112b890614016565b6a1e17ba32bc3a2830ba341f60a91b81527f3c746578745061746820687265663d2223726967687452756e6550617468223e600b8201528151908184602b83015e01602b015f81526113099061408b565b906a1e17ba32bc3a2830ba341f60a91b8252600b82017f3c746578745061746820687265663d2223726967687452756e6550617468223e9052518092602b83015e01602b015f815261135a90614100565b6a1e17ba32bc3a2830ba341f60a91b8152661e17ba32bc3a1f60c91b600b8201527f3c6720636c69702d706174683d2275726c28237363726f6c6c2d636c697029226012820152601f60f91b60328201527f3c666f726569676e4f626a65637420783d2237302220793d223830222077696460338201527f74683d2234363022206865696768743d2232343030223e00000000000000000060538201527f3c64697620786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3139606a8201527f39392f7868746d6c22207374796c653d22666f6e742d66616d696c793a204172608a8201527f69616c2c2073616e732d73657269663b20666f6e742d73697a653a203136707860aa8201527f3b206c696e652d6865696768743a20312e353b206f766572666c6f772d77726160ca8201527f703a20627265616b2d776f72643b20776f72642d627265616b3a20627265616b60ea8201526716bbb7b9321d911f60c11b61010a820152855190816020880161011283015e651e17b234bb1f60d11b61011292909101918201526f1e17b337b932b4b3b727b13532b1ba1f60811b6101188201527f3c616e696d6174655472616e73666f726d206174747269627574654e616d653d6101288201527f227472616e73666f726d2220747970653d227472616e736c617465222076616c6101488201526e7565733d2230203830303b2030202d60881b610168820152815191829060200161017783015e0161011201661110323ab91e9160c91b606582015281516020819301606c83015e7f732220726570656174436f756e743d22696e646566696e697465222f3e000000606c9290910191820152631e17b39f60e11b60898201527f3c6720636c6173733d2263796c696e6465722d636f6e7461696e6572223e0000608d8201526116049060ab0161361b565b61160d90614175565b611616906141df565b7f3c7465787420636c6173733d227469746c652220783d223330302220793d22338152751c111f21a7a72a2924a12aaa27a9299e17ba32bc3a1f60511b6020820152631e17b39f60e11b60368201527f3c6720636c6173733d2263796c696e6465722d636f6e7461696e657222207472603a8201527f616e73666f726d3d227472616e736c61746528302c2038343029223e00000000605a8201526116bd9060760161361b565b6116c690614175565b6116cf906141df565b7f3c7465787420636c6173733d22617574686f722220783d223330302220793d22815263199c111f60e11b60208201528551908160208801602483015e0160248101661e17ba32bc3a1f60c91b9052602b8101631e17b39f60e11b9052602f8101631e17b39f60e11b905260338101651e17b9bb339f60d11b905203602401600a198101825260150161176290826127eb565b61176b9061424a565b9061177583613490565b9261177f90613490565b604051948594693d913730b6b2911d101160b11b602087015280516020819201602a88015e85016270cd5360e91b602a82015281516020819301602d83015e01602a016201116160ed1b6003820152750113232b9b1b934b83a34b7b7111d10112a37b5b2b7160551b600682015281516020819301601c83015e01600301601981016801039b1b934b83a1d160bd1b905281516020819301602283015e016019016201116160ed1b6009820152600c01611838906132f7565b81516020819301825e0161227d60f01b815203601d198101825260020161185f90826127eb565b6118689061424a565b6040518091602082017f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000905280516020819201603d84015e8101603d81015f905203603d01601f19810182526118be90826127eb565b60405180916020825260208201610945916127c7565b634e487b7160e01b5f52601160045260245ffd5b61176b9396506003610796939260208061190461193c95613490565b6040519687945180918487015e8401908282015f8152815193849201905e01016270cdd160e91b815203601c198101845201826127eb565b8095846119476128e3565b92613758565b346102a65760203660031901126102a6576004355f52600c60205261199f60405f2061197881612a14565b90600260018060a01b036001830154169101546040519384936060855260608501906127c7565b91602084015260408301520390f35b346102a6575f3660031901126102a65760206040517f00000000000000000000000000000000000000000000000000000000000001008152f35b346102a65760803660031901126102a657611a0161287d565b611a09612893565b6064359167ffffffffffffffff83116102a657366023840112156102a657611a3e611a48933690602481600401359101612829565b91604435916131de565b005b346102a65760203660031901126102a6576109456109d7600435613127565b346102a65760403660031901126102a657611a8261287d565b602435908115158092036102a6576001600160a01b0316908115611af157335f52600560205260405f20825f5260205260405f2060ff1981541660ff83161790556040519081527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a3005b50630b61174360e31b5f5260045260245ffd5b346102a65760203660031901126102a6576109456109d76004356130d1565b346102a6575f3660031901126102a6576109456109d76128e3565b346102a65760203660031901126102a657611a48600435613038565b346102a6575f3660031901126102a6576040515f600154611b7a816129dc565b8084529060018116908115611c005750600114611ba2575b610945836109d7818503826127eb565b60015f9081527fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6939250905b808210611be6575090915081016020016109d7611b92565b919260018160209254838588010152019101909291611bce565b60ff191660208086019190915291151560051b840190910191506109d79050611b92565b346102a6575f3660031901126102a6576006546040516001600160a01b039091168152602090f35b346102a65760203660031901126102a6576109456109d7600435612ef3565b346102a6575f3660031901126102a6576020600854604051908152f35b346102a6575f3660031901126102a657611ca0613438565b600680546001600160a01b031981169091555f906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b346102a65760203660031901126102a6576001600160a01b03611d0461287d565b168015611d21575f526003602052602060405f2054604051908152f35b6322718ad960e21b5f525f60045260245ffd5b346102a65760603660031901126102a65760043567ffffffffffffffff81116102a657611d6590369060040161285f565b611d6d612893565b60443590611d7d83511515612c7e565b611daa7f000000000000000000000000000000000000000000000000000000000000101084511115612cd4565b611db2613438565b6009549282611de27f00000000000000000000000000000000000000000000000000000000000000108096612ee9565b111561200457825f52600c602052611dfd60405f20546129dc565b611faf57825f52600c60205260405f209080519067ffffffffffffffff82116105aa57611e2a83546129dc565b601f8111611f6a575b50602090601f8311600114611efe579180611a48979492611ea296945f92611ef3575b50508160011b915f199060031b1c19161790555b5f848152600c602052604090206001810180546001600160a01b0319166001600160a01b039093169290921790915560020154612d8f565b60011c815f52600c60205260018060a01b03600160405f200154165f52600d60205260405f20611ed3828254612da2565b9055335f52600d602052611eec60405f20918254612da2565b9055613038565b015190508880611e56565b90601f19831691845f52815f20925f5b818110611f525750926001928592611ea29896611a489b989610611f3a575b505050811b019055611e6a565b01515f1960f88460031b161c19169055888080611f2d565b92936020600181928786015181550195019301611f0e565b835f5260205f20601f840160051c81019160208510611fa5575b601f0160051c01905b818110611f9a5750611e33565b5f8155600101611f8d565b9091508190611f84565b60405162461bcd60e51b815260206004820152602760248201527f436f6e7472696275746f72733a207061676520697320616c72656164792066696044820152661b985b1a5e995960ca1b6064820152608490fd5b60405162461bcd60e51b815260206004820152602560248201527f436f6e7472696275746f72733a206e656564206d6f726520636f6e747269627560448201526474696f6e7360d81b6064820152608490fd5b346102a65760203660031901126102a657602061207560043561332d565b6040516001600160a01b039091168152f35b346102a65760203660031901126102a6576109456109d76120a661287d565b612daf565b60203660031901126102a65760043567ffffffffffffffff81116102a6576120d790369060040161285f565b6120e381511515612c7e565b6121107f000000000000000000000000000000000000000000000000000000000000010082511115612cd4565b6008545f52600c602052600260405f2001543403612313576009545f52600b60205260405f20815167ffffffffffffffff81116105aa5761215182546129dc565b601f81116122ce575b50602092601f821160011461226f57928192935f92612264575b50508160011b915f199060031b1c19161790555b6009545f908152600b6020526040902060010180546001600160a01b03191633908117909155600a546121ba91613361565b6121d26121c8600a54612d2a565b80600a5533613361565b6121dd600a54612d2a565b600a556121eb600954612d2a565b80600955600854906121fc82613038565b7f000000000000000000000000000000000000000000000000000000000000001090811561225057061561222c57005b61223590612d2a565b80600855600754905f52600c602052600260405f2001555f80f35b634e487b7160e01b5f52601260045260245ffd5b015190508380612174565b601f19821693835f52805f20915f5b8681106122b6575083600195961061229e575b505050811b019055612188565b01515f1960f88460031b161c19169055838080612291565b9192602060018192868501518155019401920161227e565b825f5260205f20601f830160051c81019160208410612309575b601f0160051c01905b8181106122fe575061215a565b5f81556001016122f1565b90915081906122e8565b60405162461bcd60e51b815260206004820152603360248201527f436f6e7472696275746f72733a206e6f7420726967687420616d6f756e74206f604482015272662045544820746f20636f6e7472696275746560681b6064820152608490fd5b346102a6575f3660031901126102a65760206040517f00000000000000000000000000000000000000000000000000000000000000108152f35b346102a657611a486123bf366128a9565b90604051926123cf6020856127eb565b5f84526131de565b346102a6575f3660031901126102a657335f52600d6020525f8080806040812054338252600d602052816040812055335af1612411612c4f565b501561241957005b60405162461bcd60e51b815260206004820152602660248201527f436f6e7472696275746f72733a20726577617264207769746864726177616c2060448201526519985a5b195960d21b6064820152608490fd5b346102a6575f3660031901126102a65760206040517f00000000000000000000000000000000000000000000000000000000000000168152f35b346102a657611a486124b8366128a9565b91612ab4565b346102a6575f3660031901126102a6576020600a54604051908152f35b346102a6575f3660031901126102a65760206040517f00000000000000000000000000000000000000000000000000000000000010108152f35b346102a6575f3660031901126102a6576020600954604051908152f35b346102a65760403660031901126102a65761254b61287d565b6024356125578161332d565b33151580612609575b806125dc575b6125c95781906001600160a01b0384811691167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9255f80a45f90815260046020526040902080546001600160a01b0319166001600160a01b03909216919091179055005b63a9fbf51f60e01b5f523360045260245ffd5b506001600160a01b0381165f90815260056020908152604080832033845290915290205460ff1615612566565b506001600160a01b038116331415612560565b346102a65760203660031901126102a65760043567ffffffffffffffff81116102a65761264f602091369060040161285f565b8160405191805191829101835e600f90820190815281900382019020546040516001600160a01b039091168152f35b346102a65760203660031901126102a65760043561269b8161332d565b505f526004602052602060018060a01b0360405f205416604051908152f35b346102a6575f3660031901126102a6576040515f80546126d9816129dc565b8084529060018116908115611c00575060011461270057610945836109d7818503826127eb565b5f8080527f290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e563939250905b808210612742575090915081016020016109d7611b92565b91926001816020925483858801015201910190929161272a565b346102a65760203660031901126102a6576004359063ffffffff60e01b82168092036102a6576020916380ac58cd60e01b81149081156127b6575b81156127a5575b5015158152f35b6301ffc9a760e01b1490508361279e565b635b5e139f60e01b81149150612797565b805180835260209291819084018484015e5f828201840152601f01601f1916010190565b90601f8019910116810190811067ffffffffffffffff8211176105aa57604052565b67ffffffffffffffff81116105aa57601f01601f191660200190565b9291926128358261280d565b9161284360405193846127eb565b8294818452818301116102a6578281602093845f960137010152565b9080601f830112156102a65781602061287a93359101612829565b90565b600435906001600160a01b03821682036102a657565b602435906001600160a01b03821682036102a657565b60609060031901126102a6576004356001600160a01b03811681036102a657906024356001600160a01b03811681036102a6579060443590565b604051906128f260e0836127eb565b60c082527f9b86e19b9ae19aaee19b81e19aa4e19b86e19b86e19b9ae19aaee19b81e19aa460c0837fe19b9ae19aaee19b81e19aa4e19b86e19b86e19b9ae19aaee19b81e19aa4e19b60208201527f86e19b86e19b9ae19aaee19b81e19aa4e19b86e19b86e19b9ae19aaee19b81e160408201527f9aa4e19b86e19b86e19b9ae19aaee19b81e19aa4e19b86e19b86e19b9ae19aae60608201527fe19b81e19aa4e19b86e19b86e19b9ae19aaee19b81e19aa4e19b86e19b86e19b60808201527f9ae19aaee19b81e19aa4e19b86e19b86e19b9ae19aaee19b81e19aa4e19b86e160a08201520152565b90600182811c92168015612a0a575b60208310146129f657565b634e487b7160e01b5f52602260045260245ffd5b91607f16916129eb565b9060405191825f825492612a27846129dc565b8084529360018116908115612a925750600114612a4e575b50612a4c925003836127eb565b565b90505f9291925260205f20905f915b818310612a76575050906020612a4c928201015f612a3f565b6020919350806001915483858901015201910190918492612a5d565b905060209250612a4c94915060ff191682840152151560051b8201015f612a3f565b6001600160a01b0390911691908215612c3c575f828152600260205260409020546001600160a01b031692829033151580612ba7575b5084612b74575b805f52600360205260405f2060018154019055815f52600260205260405f20816001600160601b0360a01b825416179055847fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a46001600160a01b0316808303612b5c57505050565b6364283d7b60e01b5f5260045260245260445260645ffd5b5f82815260046020526040902080546001600160a01b0319169055845f52600360205260405f205f198154019055612af1565b90915080612beb575b15612bbd5782905f612aea565b8284612bd557637e27328960e01b5f5260045260245ffd5b63177e802f60e01b5f523360045260245260445ffd5b503384148015612c1a575b80612bb057505f838152600460205260409020546001600160a01b03163314612bb0565b505f84815260056020908152604080832033845290915290205460ff16612bf6565b633250574960e11b5f525f60045260245ffd5b3d15612c79573d90612c608261280d565b91612c6e60405193846127eb565b82523d5f602084013e565b606090565b15612c8557565b60405162461bcd60e51b815260206004820152602160248201527f436f6e7472696275746f72733a20696e707574207465787420697320656d70746044820152607960f81b6064820152608490fd5b15612cdb57565b60405162461bcd60e51b815260206004820152602160248201527f436f6e7472696275746f72733a20746f6f206d616e79206368617261637465726044820152607360f81b6064820152608490fd5b5f1981146118d45760010190565b90612d428261280d565b612d4f60405191826127eb565b8281528092612d60601f199161280d565b0190602036910137565b908151811015612d7b570160200190565b634e487b7160e01b5f52603260045260245ffd5b818102929181159184041417156118d457565b919082018092116118d457565b604051906001600160601b03199060601b16602082015260148152612dd56034826127eb565b604090815190612de583836127eb565b601082526f181899199a1a9b1b9c1cb0b131b232b360811b6020830152825192612e0f81856127eb565b601684526020840190601f1901368237835115612d7b5760309053825160011015612d7b57607860218401535f5b600a8110612e4b5750505090565b6001600160f81b0319612e7160ff600f612e658587612d6a565b5160fc1c161685612d6a565b5116908060011b91818304600214821517156118d4578260020190816002116118d457612ea1905f1a9187612d6a565b536001600160f81b0319612ec5600f612eba8487612d6a565b5160f81c1686612d6a565b511691600301806003116118d457612ee26001935f1a9187612d6a565b5301612e3d565b8115612250570490565b805f52600c602052612f0860405f20546129dc565b15612f20575f52600c60205261287a60405f20612a14565b612f4b7f00000000000000000000000000000000000000000000000000000000000000108092612d8f565b6060915f905b808210612f5e5750505090565b909192835f52600b60205260405f20602060405192805191829101602085015e820160208101905f82525f928054612f95816129dc565b9360018216918215613019575050600114612fde575b50505081612fd06001809484600160fd1b612fd6965203601e198101845201826127eb565b94612d2a565b920190612f51565b909192505f5260205f205f905b8382106130035750500160200181612fd06001612fab565b6001816020925483858701015201910190612feb565b60ff19169052505081151590910201602001905081612fd06001612fab565b6130637f00000000000000000000000000000000000000000000000000000000000000108092612d8f565b908160011b91808304600214901517156118d4578060011b90808204600214901517156118d4576130949082612da2565b5f1981019081116118d4577f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c9160409182519182526020820152a1565b6001818116036131115761310c61287a917f00000000000000000000000000000000000000000000000000000000000000109060011c612ee9565b612ef3565b60011c5f52600b60205261287a60405f20612a14565b6001818116036131bc5761315f907f00000000000000000000000000000000000000000000000000000000000000109060011c612ee9565b5f908152600c60205260409020600101546001600160a01b03165b60018060a01b03811690815f52600e60205261319960405f20546129dc565b156131b257505f52600e60205261287a60405f20612a14565b61287a9150612daf565b600190811c5f908152600b6020526040902001546001600160a01b031661317a565b92916131eb818386612ab4565b813b6131f8575b50505050565b604051630a85bd0160e11b81523360048201526001600160a01b03948516602482015260448101919091526080606482015292169190602090829081906132439060848301906127c7565b03815f865af15f91816132b2575b5061327f575061325f612c4f565b8051908161327a5782633250574960e11b5f5260045260245ffd5b602001fd5b6001600160e01b03191663757a42ff60e11b016132a057505f8080806131f2565b633250574960e11b5f5260045260245ffd5b9091506020813d6020116132ef575b816132ce602093836127eb565b810103126102a657516001600160e01b0319811681036102a657905f613251565b3d91506132c1565b7f22696d616765223a2022646174613a696d6167652f7376672b786d6c3b626173815263194d8d0b60e21b602082015260240190565b5f818152600260205260409020546001600160a01b031690811561334f575090565b637e27328960e01b5f5260045260245ffd5b6001600160a01b0316908115612c3c575f818152600260205260409020546001600160a01b03168015159290919083613405575b805f52600360205260405f2060018154019055815f52600260205260405f20816001600160601b0360a01b825416179055827fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4506133f257565b6339e3563760e11b5f525f60045260245ffd5b5f82815260046020526040902080546001600160a01b0319169055825f52600360205260405f205f198154019055613395565b6006546001600160a01b0316330361344c57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b805f9172184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8210156135b5575b806d04ee2d6d415b85acef8100000000600a92101561359a575b662386f26fc10000811015613586575b6305f5e100811015613575575b612710811015613566575b6064811015613558575b101561354d575b600a602161351560018501612d38565b938401015b5f1901916f181899199a1a9b1b9c1cb0b131b232b360811b8282061a835304801561354857600a909161351a565b505090565b600190910190613505565b6064600291049301926134fe565b612710600491049301926134f4565b6305f5e100600891049301926134e9565b662386f26fc10000601091049301926134dc565b6d04ee2d6d415b85acef8100000000602091049301926134cc565b506040915072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b81046134b2565b7f3c726563742077696474683d223130302522206865696768743d223130302522815270103334b6361e9111b3333333333311179f60791b602082015260310190565b7f3c7265637420636c6173733d2268616e646c652220783d22312e352220793d2281527f31312e35222077696474683d22333722206865696768743d223337222072783d60208201526f111c171a9110393c9e911c171a91179f60811b604082015260500190565b7f3c7265637420636c6173733d2268616e646c652220783d223336312e3522207981527f3d2231312e35222077696474683d22333722206865696768743d2233372220726020820152713c1e911c171a9110393c9e911c171a91179f60711b604082015260520190565b7f3c7265637420636c6173733d2263796c696e6465722220783d2232302220793d81527f22312e35222077696474683d2233363022206865696768743d223537222072786020820152721e91191c171a9110393c9e91191c171a91179f60691b604082015260530190565b604080517f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060208201527f30302f737667222076696577426f783d22302030203430302034303022207072918101919091527f657365727665417370656374526174696f3d22784d6964594d6964206d656574606082015261111f60f11b6080820152651e3232b3399f60d11b60828201527f3c636c6970506174682069643d22636f6e74656e742d636c6970223e3c72656360888201527f7420783d2232302220793d223630222077696474683d2233363022206865696760a882015274343a1e91191c1811179f1e17b1b634b82830ba341f60591b60c8820152661e17b232b3399f60c91b60dd820152661e39ba3cb6329f60c91b60e48201527f2e7363726f6c6c2d636f6e7461696e6572207b2077696474683a20313030253b60eb8201526f206865696768743a20313030253b207d60801b61010b8201527f2e63796c696e6465722d636f6e7461696e6572207b2077696474683a2034303061011b8201527270783b206865696768743a20363070783b207d60681b61013b8201527f2e7363726f6c6c2d626f6479207b2066696c6c3a20234635453542333b20737461014e8201527f726f6b653a20626c61636b3b207374726f6b652d77696474683a20323b207d0061016e8201527f2e63796c696e646572207b2066696c6c3a20234635453542333b207374726f6b61018d8201527f653a20626c61636b3b207374726f6b652d77696474683a20323b207d000000006101ad8201527f2e68616e646c65207b2066696c6c3a20233842343531333b207374726f6b653a6101c98201527f20626c61636b3b207374726f6b652d77696474683a20323b207d0000000000006101e98201527f2e7469746c65207b20666f6e742d66616d696c793a20417269616c2c2073616e6102038201527f732d73657269663b20666f6e742d73697a653a20323470783b20746578742d616102238201526f6e63686f723a206d6964646c653b207d60801b6102438201527f2e617574686f72207b20666f6e742d66616d696c793a20417269616c2c2073616102538201527f6e732d73657269663b20666f6e742d73697a653a20323070783b20746578742d61027382015270616e63686f723a206d6964646c653b207d60781b6102938201527f2e636f6e74656e74207b20666f6e742d66616d696c793a20417269616c2c20736102a48201527f616e732d73657269663b20666f6e742d73697a653a20313470783b2066696c6c6102c4820152693a20626c61636b3b207d60b01b6102e48201527f2e72756e6573207b20666f6e742d66616d696c793a20417269616c2c2073616e6102ee8201527f732d73657269663b20666f6e742d73697a653a20313270783b206f706163697461030e82015268793a20302e373b207d60b81b61032e820152671e17b9ba3cb6329f60c11b6103378201529384939290613b9a61033f86016135d8565b7f3c7265637420636c6173733d227363726f6c6c2d626f64792220783d2235302281527f20793d2235382e35222077696474683d2233303022206865696768743d223238602080830191909152631991179f60e11b60408301527f3c7465787420636c6173733d2272756e65732220783d2236302220793d22363060448301527f222077726974696e672d6d6f64653d2274622220746578744c656e6774683d22606483015264191c18111f60d91b6084830152825190830192918184608983015e019060898201661e17ba32bc3a1f60c91b9052609082017f3c7465787420636c6173733d2272756e65732220783d223334302220793d2236905260b082017f30222077726974696e672d6d6f64653d2274622220746578744c656e6774683d90526511191c18111f60d11b60d083015251809260d683015e661e17ba32bc3a1f60c91b60d692909101918201527f3c6720636c69702d706174683d2275726c2823636f6e74656e742d636c69702960dd82015261111f60f11b60fd8201527f3c666f726569676e4f626a65637420783d2237302220793d223730222077696460ff820152753a341e91191b1811103432b4b3b43a1e91191b18111f60511b61011f8201527f3c64697620786d6c6e733d22687474703a2f2f7777772e77332e6f72672f31396101358201527f39392f7868746d6c22207374796c653d22666f6e742d66616d696c793a2041726101558201527f69616c2c2073616e732d73657269663b20666f6e742d73697a653a20313570786101758201527f3b206c696e652d6865696768743a20312e353b206f766572666c6f772d7772616101958201527f703a20627265616b2d776f72643b20776f72642d627265616b3a20627265616b6101b58201526716bbb7b9321d911f60c11b6101d582015281519160898201918391602001906101dd015e651e17b234bb1f60d11b61015492909101918201526f1e17b337b932b4b3b727b13532b1ba1f60811b61015a820152631e17b39f60e11b61016a8201527f3c6720636c6173733d2263796c696e6465722d636f6e7461696e6572223e000061016e820152613eb99061018c0161361b565b613ec290613683565b613ecb906136ed565b7f3c7465787420636c6173733d227469746c652220783d223230302220793d22338152621c111f60e91b602082015281516020819301602383015e0160238101661e17ba32bc3a1f60c91b9052602a8101631e17b39f60e11b9052602e81017f3c6720636c6173733d2263796c696e6465722d636f6e7461696e6572222074729052604e81017f616e73666f726d3d227472616e736c61746528302c2033343029223e000000009052606a01613f809061361b565b613f8990613683565b613f92906136ed565b7f3c7465787420636c6173733d22617574686f722220783d223230302220793d22815263199c111f60e11b602082015281516020819301602483015e0160248101661e17ba32bc3a1f60c91b9052602b8101631e17b39f60e11b9052602f8101651e17b9bb339f60d11b905203602401600e198101825260110161287a90826127eb565b7f3c616e696d617465206174747269627574654e616d653d2273746172744f666681527f736574222066726f6d3d22302220746f3d222d34303022206475723d2231357360208201527f2220726570656174436f756e743d22696e646566696e697465222f3e000000006040820152605c0190565b7f3c616e696d617465206174747269627574654e616d653d2273746172744f666681527f736574222066726f6d3d223430302220746f3d223022206475723d223135732260208201527f20726570656174436f756e743d22696e646566696e697465222f3e00000000006040820152605b0190565b7f3c616e696d617465206174747269627574654e616d653d2273746172744f666681527f736574222066726f6d3d223830302220746f3d2234303022206475723d22313560208201527f732220726570656174436f756e743d22696e646566696e697465222f3e0000006040820152605d0190565b7f3c7265637420636c6173733d2268616e646c652220783d223536312e3522207981527f3d2231312e35222077696474683d22333722206865696768743d2233372220726020820152713c1e911c171a9110393c9e911c171a91179f60711b604082015260520190565b7f3c7265637420636c6173733d2263796c696e6465722220783d2232302220793d81527f22312e35222077696474683d2235363022206865696768743d223537222072786020820152721e91191c171a9110393c9e91191c171a91179f60691b604082015260530190565b9081511561438657604051916142616060846127eb565b604083527f4142434445464748494a4b4c4d4e4f505152535455565758595a61626364656660208401527f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f60408401528051600281018091116118d457600390046001600160fe1b03811681036118d4576142de9060021b612d38565b90602082019080815182019560208701908151925f83525b88811061433857505060039394959650525106806001146143265760021461431c575090565b603d905f19015390565b50603d90815f19820153600119015390565b600360049199969901986001603f8b5182828260121c16870101518453828282600c1c16870101518385015382828260061c16870101516002850153168401015160038201530194976142f6565b90506040516143966020826127eb565b5f815290565b806143a7602a61280d565b916143b560405193846127eb565b602a83526143c3602a61280d565b6020840190601f1901368237835115612d7b5760309053825160011015612d7b576078602184015360295b6001811161441657506143ff575090565b63e22e27eb60e01b5f52600452601460245260445ffd5b90600f81166010811015612d7b576f181899199a1a9b1b9c1cb0b131b232b360811b901a6144448386612d6a565b5360041c9080156118d4575f19016143ee56fea264697066735822122083090297fff147107bd847abebefe6b3aadf2fb7d13dd233a9c7644d48c802c464736f6c634300081a0033

Deployed Bytecode Sourcemap

419:21819:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;:::i;:::-;1063:62:0;;:::i;:::-;-1:-1:-1;;;;;419:21819:13;2169:22:0;;419:21819:13;;2525:6:0;419:21819:13;;-1:-1:-1;;;;;;419:21819:13;;;;;;;-1:-1:-1;;;;;419:21819:13;2573:40:0;-1:-1:-1;;2573:40:0;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;;;;;;;;;;;:::i;:::-;1896:70;419:21819;;1904:24;;1896:70;:::i;:::-;1977:77;3205:11;419:21819;;1985:31;;1977:77;:::i;:::-;419:21819;2212:3;419:21819;;2198:12;;;;;-1:-1:-1;;;;;;2247:4:13;;;;:::i;:::-;419:21819;;;;;2293:13;;;:30;;;;2212:3;2292:92;;;;2212:3;2292:152;;;;2212:3;2292:195;;;;2212:3;2292:262;;;;2212:3;419:21819;;;;;;2187:9;;419:21819;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;2292:262;-1:-1:-1;;;2540:13:13;;-1:-1:-1;2292:262:13;;;:195;-1:-1:-1;;;2473:13:13;;;-1:-1:-1;2292:195:13;;:152;419:21819;-1:-1:-1;;;;2413:13:13;;;;:30;;2292:152;;;;2413:30;-1:-1:-1;;;;2430:13:13;;;2413:30;;2292:92;419:21819;-1:-1:-1;;;;2353:13:13;;;;:30;;2292:92;;;;2353:30;-1:-1:-1;;;;2370:13:13;;;2353:30;;2293;-1:-1:-1;;;2310:13:13;;;;-1:-1:-1;2293:30:13;;2198:12;;419:21819;;;;;;;;;;;;;3272:13;419:21819;;;;;;;;;;;;;;-1:-1:-1;;;;;419:21819:13;;;3370:10;419:21819;;3356:13;419:21819;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;2182:500;419:21819;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3272:13;419:21819;;;;;;;;;;;;-1:-1:-1;;;;;;419:21819:13;3370:10;419:21819;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;1050:52;419:21819;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;4039:18:2;419:21819:13;;;;;4039:35:2;419:21819:13;;;;;;-1:-1:-1;419:21819:13;;;;;;-1:-1:-1;419:21819:13;;;;;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;7093:158;7288:76;7972:56;419:21819;7463:482;2779:51:8;7221:4:13;2779:51:8;:::i;:::-;7490:452:13;419:21819;;;;7093:158;;419:21819;7093:158;;;;;419:21819;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;7093:158;;419:21819;;7093:158;;;;;;:::i;:::-;419:21819;;;;:::i;:::-;;;7398:30;419:21819;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;419:21819:13;;;;7288:76;:::i;:::-;7398:30;:::i;:::-;419:21819;;;;;;7867:41;;-1:-1:-1;;;;;419:21819:13;7867:41;:::i;:::-;419:21819;;;7490:452;;;419:21819;7490:452;;;419:21819;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7490:452;;8609:53;;7490:452;;;;;;;:::i;7463:482::-;419:21819;;7972:56;;;419:21819;7972:56;;;419:21819;;;;;;;;;;;;;;;;;;7972:56;;419:21819;;7972:56;;;;;;:::i;:::-;419:21819;;;;7093:158;419:21819;;7093:158;419:21819;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;1442:54;419:21819;;;;;;1442:54;;;:::i;:::-;419:21819;;;;;;;1442:54;;419:21819;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;-1:-1:-1;;;;;419:21819:13;;:::i;:::-;;;;1606:47;419:21819;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;419:21819:13;;;;1063:62:0;;:::i;:::-;419:21819:13;;6709:30;419:21819;;;;;;;;-1:-1:-1;;419:21819:13;;;;-1:-1:-1;;;;;419:21819:13;;:::i;:::-;;;;1550:47;419:21819;;;;;;;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;;8571:11;8626:21;8556:26;8571:11;8556:26;;:::i;:::-;8626:21;:::i;:::-;419:21819;;;;8609:53;;419:21819;8609:53;;;;;;419:21819;;;;;;;;;;;;;;;;;;8609:53;;;;;;;;;;;:::i;:::-;8594:69;8684:26;;;:::i;:::-;8761:27;8737:52;419:21819;8761:27;;;:::i;:::-;419:21819;;8737:52;;;-1:-1:-1;;;8737:52:13;;;419:21819;;;;;;;;;;;;;;;;;;8737:52;;419:21819;;8737:52;;;;;;:::i;:::-;419:21819;;;;8807:17;419:21819;;;;;;;;8977:11;419:21819;9115:4;419:21819;;;;;;9115:4;419:21819;;;;;;;9115:4;419:21819;;;;;;9115:4;419:21819;;;;;;;9029:4;9232:26;419:21819;;9232:26;;:::i;:::-;9261:2;419:21819;;;;;;;;;;;9068:3;419:21819;;;9403:3;419:21819;;;;;;9403:3;419:21819;;;;;;;;;;;;;:::i;:::-;14576:37;;;;:::i;:::-;14652:26;;;;:::i;:::-;419:21819;;;;;11254:4446;;419:21819;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;419:21819:13;;-1:-1:-1;;;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;419:21819:13;;-1:-1:-1;;;419:21819:13;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;-1:-1:-1;;;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;-1:-1:-1;;;419:21819:13;;;;;-1:-1:-1;;;419:21819:13;;;;;-1:-1:-1;;;419:21819:13;;11254:4446;419:21819;11254:4446;;;;;;;419:21819;11254:4446;;;;;:::i;:::-;10020:29;8803:1144;10020:29;:::i;:::-;10191:19;;;;:::i;:::-;10279;;;;:::i;:::-;419:21819;;;;;;;;;10146:258;;419:21819;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;10146:258;;;;;;;8567:1;10146:258;;;;;:::i;:::-;10119:288;;;:::i;:::-;419:21819;;10472:55;;419:21819;10472:55;;419:21819;;;;;;;;;;;;;;;;;;;;;10472:55;419:21819;10472:55;419:21819;;10472:55;;;;;;;;:::i;:::-;419:21819;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;8803:1144;10020:29;9812:21;;;419:21819;9875:60;9812:21;;419:21819;9812:21;;419:21819;9812:21;;:::i;:::-;419:21819;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8609:53;;419:21819;;;;;;;:::i;:::-;9783:65;419:21819;;;;:::i;:::-;9875:60;;:::i;419:21819::-;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;1503:38;419:21819;;;;;;1503:38;;;:::i;:::-;419:21819;1503:38;419:21819;;;;;;1503:38;;419:21819;;1503:38;;419:21819;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;647:42;419:21819;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;:::i;:::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;419:21819:13;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;419:21819:13;;15698:22:2;;15694:91;;735:10:7;419:21819:13;;15794:18:2;419:21819:13;;;;;;-1:-1:-1;419:21819:13;;;;-1:-1:-1;419:21819:13;;;;;;;;;;;;;;;;;15855:41:2;419:21819:13;735:10:7;15855:41:2;;419:21819:13;15694:91:2;15743:31;;;;419:21819:13;15743:31:2;419:21819:13;;;;15743:31:2;419:21819:13;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;419:21819:13;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;419:21819:13;;;;;;;2597:7:2;419:21819:13;;;;:::i;:::-;;;;;2597:7:2;419:21819:13;;;2597:7:2;;;;419:21819:13;;;;;;;;;;;;;;:::i;:::-;2597:7:2;419:21819:13;;;;;;;-1:-1:-1;419:21819:13;;;;;;;-1:-1:-1;419:21819:13;;-1:-1:-1;419:21819:13;;;;;;;;;;2597:7:2;419:21819:13;;;;;;;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;;;;;;;;;;;;;-1:-1:-1;419:21819:13;;-1:-1:-1;419:21819:13;;;;;;;;-1:-1:-1;;419:21819:13;;;;1273:6:0;419:21819:13;;;-1:-1:-1;;;;;419:21819:13;;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;;:::i;:::-;;;;;;-1:-1:-1;;419:21819:13;;;;;1132:30;419:21819;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;1063:62:0;;:::i;:::-;2525:6;419:21819:13;;-1:-1:-1;;;;;;419:21819:13;;;;;;;-1:-1:-1;;;;;419:21819:13;2573:40:0;419:21819:13;;2573:40:0;419:21819:13;;;;;;;-1:-1:-1;;419:21819:13;;;;-1:-1:-1;;;;;419:21819:13;;:::i;:::-;;2006:19:2;;2002:87;;419:21819:13;;2105:9:2;419:21819:13;;;;;;;;;;;;;2002:87:2;2048:30;;;419:21819:13;2048:30:2;419:21819:13;;;;;2048:30:2;419:21819:13;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;1896:70;419:21819;;1904:24;;1896:70;:::i;:::-;1977:77;5918:11;419:21819;;1985:31;;1977:77;:::i;:::-;1063:62:0;;:::i;:::-;5967:19:13;419:21819;5989:11;;5967:33;5989:11;5967:33;;;:::i;:::-;:43;419:21819;;;;;;6077:4;419:21819;;;;;;;;:::i;:::-;;;;;;6077:4;419:21819;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6463:7;419:21819;;;6269:32;419:21819;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6077:4;419:21819;;;;;;6208:20;;419:21819;;-1:-1:-1;;;;;;419:21819:13;-1:-1:-1;;;;;419:21819:13;;;;;;;;;;6269:18;;419:21819;6269:32;:::i;:::-;419:21819;;;;;6077:4;419:21819;;;;;;;;;;;6329:20;419:21819;;;;6316:12;419:21819;;;;;6316:45;419:21819;;;6316:45;:::i;:::-;419:21819;;6385:10;419:21819;;6316:12;419:21819;;6372:35;419:21819;;;;;;6372:35;:::i;:::-;419:21819;;6463:7;:::i;419:21819::-;;;;-1:-1:-1;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6269:32;419:21819;;6463:7;419:21819;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;419:21819:13;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;2274:22:2;419:21819:13;;2274:22:2;:::i;:::-;419:21819:13;;-1:-1:-1;;;;;419:21819:13;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;419:21819:13;;;;;;;;;;;;;;;;;;:::i;:::-;1896:70;419:21819;;1904:24;;1896:70;:::i;:::-;1977:77;4622:11;419:21819;;1985:31;;1977:77;:::i;:::-;4687:11;419:21819;;;4682:4;419:21819;;4682:22;419:21819;;;4682:22;419:21819;4669:9;:35;419:21819;;4815:19;419:21819;;;4802:12;419:21819;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4815:19;419:21819;;;;;4802:12;419:21819;;;;;4862:40;;419:21819;;-1:-1:-1;;;;;;419:21819:13;4905:10;419:21819;;;;;;5011:11;419:21819;5011:11;;;:::i;:::-;5076;5034:13;5011:11;419:21819;5034:13;:::i;:::-;419:21819;5011:11;419:21819;4905:10;5076:11;:::i;:::-;5099:13;5011:11;419:21819;5099:13;:::i;:::-;5011:11;419:21819;5155:21;4815:19;419:21819;5155:21;:::i;:::-;419:21819;4815:19;419:21819;4687:11;419:21819;5232:11;;;;:::i;:::-;5357;5335:33;419:21819;;;;;5335:38;5332:145;;419:21819;5332:145;5390:13;;;:::i;:::-;419:21819;4687:11;419:21819;5443:22;419:21819;;;;4682:4;419:21819;;4682:22;419:21819;;;5418:22;419:21819;;;;;;;;;;;;;;;;;;;;-1:-1:-1;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;419:21819:13;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;599:41;419:21819;;;;;;;4873:39:2;419:21819:13;;;:::i;:::-;;;;;;;;;:::i;:::-;;;;4873:39:2;:::i;419:21819:13:-;;;;;;-1:-1:-1;;419:21819:13;;;;3672:10;419:21819;;3659:12;419:21819;;;;;;;;;;3672:10;419:21819;;3659:12;419:21819;;;;;;;3672:10;3752:44;;;;:::i;:::-;;419:21819;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;551:41;419:21819;;;;;;;;;;;:::i;:::-;;;:::i;:::-;;;;;;-1:-1:-1;;419:21819:13;;;;;1214:30;419:21819;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;696:78;419:21819;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;1169:38;419:21819;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;:::i;:::-;;;14943:22:2;;;:::i;:::-;735:10:7;15093:18:2;;:35;;;419:21819:13;15093:69:2;;;419:21819:13;15089:142:2;;419:21819:13;;-1:-1:-1;;;;;419:21819:13;;;;;15283:28:2;419:21819:13;;15283:28:2;419:21819:13;;;;;;;;;;;;-1:-1:-1;;;;;;419:21819:13;-1:-1:-1;;;;;419:21819:13;;;;;;;;;;15089:142:2;15189:27;;;419:21819:13;15189:27:2;735:10:7;419:21819:13;;;;15189:27:2;15093:69;-1:-1:-1;;;;;;419:21819:13;;;;;;4039:18:2;419:21819:13;;;;;;;;735:10:7;419:21819:13;;;;;;;;;;15132:30:2;15093:69;;:35;-1:-1:-1;;;;;;419:21819:13;;735:10:7;15115:13:2;;15093:35;;419:21819:13;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1660:47;419:21819;;;;;;;;;;;;;;;;-1:-1:-1;;;;;419:21819:13;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;3583:22:2;;;:::i;:::-;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1;419:21819:13;;;;;;;-1:-1:-1;419:21819:13;;-1:-1:-1;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;1698:40:2;;;:104;;;;419:21819:13;1698:156:2;;;;419:21819:13;;;;;;;1698:156:2;-1:-1:-1;;;861:40:9;;-1:-1:-1;1698:156:2;;;:104;-1:-1:-1;;;1754:48:2;;;-1:-1:-1;1698:104:2;;419:21819:13;;;;;;;;;;;;;;;;;-1:-1:-1;419:21819:13;;;;;;;;-1:-1:-1;;419:21819:13;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;-1:-1:-1;;419:21819:13;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;419:21819:13;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;-1:-1:-1;;;;;419:21819:13;;;;;;:::o;:::-;;;;-1:-1:-1;;;;;419:21819:13;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;;;;;419:21819:13;;;;;;;;;-1:-1:-1;;;;;419:21819:13;;;;;;;;;;:::o;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;419:21819:13;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:::o;:::-;;;-1:-1:-1;419:21819:13;;;;;-1:-1:-1;419:21819:13;;-1:-1:-1;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4143:578:2;-1:-1:-1;;;;;419:21819:13;;;;4143:578:2;4237:16;;4233:87;;4251:1;419:21819:13;;;5799:7:2;419:21819:13;;;;;;-1:-1:-1;;;;;419:21819:13;;;;735:10:7;9035:18:2;;;9031:86;;4143:578;9161:18;;9157:256;;4143:578;419:21819:13;4251:1:2;419:21819:13;9487:9:2;419:21819:13;;;4251:1:2;419:21819:13;9427:16:2;419:21819:13;;;;;;4251:1:2;419:21819:13;5799:7:2;419:21819:13;;;4251:1:2;419:21819:13;;-1:-1:-1;;;;;419:21819:13;;;;;;;;9577:27:2;;4251:1;9577:27;;-1:-1:-1;;;;;419:21819:13;4610:21:2;;;4606:109;;4143:578;;;:::o;4606:109::-;4654:50;;;4251:1;4654:50;;419:21819:13;;;;;;4251:1:2;4654:50;9157:256;419:21819:13;;;;15346:15:2;419:21819:13;;;;;;;-1:-1:-1;;;;;;419:21819:13;;;;4251:1:2;419:21819:13;9368:9:2;419:21819:13;;;4251:1:2;419:21819:13;;;;;;;;9157:256:2;;9031:86;6514:127;;-1:-1:-1;6514:127:2;;;9031:86;7193:39;7189:255;;9031:86;;;;;7189:255;7252:19;;419:21819:13;;7298:31:2;;;4251:1;7298:31;;419:21819:13;;4251:1:2;7298:31;7248:186;7375:44;;;4251:1;7375:44;735:10:7;7375:44:2;419:21819:13;;;;4251:1:2;7375:44;6514:127;735:10:7;;6552:16:2;;:52;;;;6514:127;6552:88;6514:127;6552:88;-1:-1:-1;4251:1:2;419:21819:13;;;6034:15:2;419:21819:13;;;;;;-1:-1:-1;;;;;419:21819:13;735:10:7;6608:32:2;6514:127;;6552:52;-1:-1:-1;4251:1:2;419:21819:13;;;4039:18:2;419:21819:13;;;;;;;;735:10:7;419:21819:13;;;;;;;;;;6552:52:2;;4233:87;4276:33;;;4251:1;4276:33;4251:1;4276:33;419:21819:13;;4251:1:2;4276:33;419:21819:13;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;-1:-1:-1;419:21819:13;;;;:::o;:::-;;;:::o;:::-;;;;:::o;:::-;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;:::o;:::-;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;:::o;:::-;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;:::o;:::-;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;:::o;20920:479::-;419:21819;;;-1:-1:-1;;;;;419:21819:13;;;;;21026:22;;;419:21819;21026:22;;;;;;;:::i;:::-;419:21819;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;21026:22:13;419:21819;;;;;;;;;;:::i;:::-;21143:2;419:21819;;21026:22;419:21819;;;-1:-1:-1;;419:21819:13;;;;;;;;;21157:12;;;419:21819;;21184:1;419:21819;;;;21180:12;419:21819;;;21180:12;-1:-1:-1;21220:6:13;21224:2;21220:6;;;;21373:18;;;20920:479;:::o;21228:3::-;-1:-1:-1;;;;;;21261:29:13;419:21819;21343:4;21276:7;;;;:::i;:::-;419:21819;;;;;21261:29;;:::i;:::-;419:21819;;;;21184:1;419:21819;;;;;21252:1;419:21819;;;;;;;;21252:1;419:21819;;;21252:1;419:21819;;;21248:42;;-1:-1:-1;21248:42:13;;;;:::i;:::-;;-1:-1:-1;;;;;;21318:31:13;21343:4;21333:7;;;;:::i;:::-;419:21819;;;;21318:31;;:::i;:::-;419:21819;;;21309:1;419:21819;;21309:1;419:21819;;;21305:44;21184:1;21305:44;-1:-1:-1;21305:44:13;;;;:::i;:::-;;419:21819;21208:10;;419:21819;;;;;;;:::o;21693:540::-;419:21819;-1:-1:-1;419:21819:13;21782:4;419:21819;;;;-1:-1:-1;419:21819:13;;;:::i;:::-;21776:34;419:21819;;-1:-1:-1;419:21819:13;21782:4;419:21819;;;;-1:-1:-1;419:21819:13;;:::i;21773:453::-;21912:17;21918:11;21912:17;;;:::i;:::-;419:21819;21988:10;-1:-1:-1;21984:198:13;22000:15;;;;;;22196:18;;;;:::o;22017:3::-;419:21819;;;;-1:-1:-1;419:21819:13;22082:12;419:21819;;;-1:-1:-1;419:21819:13;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;419:21819:13;;-1:-1:-1;419:21819:13;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;22146:20:13;419:21819;;;;;;;;;;;;:::i;:::-;22146:20;;:::i;:::-;22017:3;419:21819;21988:10;;;419:21819;;;;;-1:-1:-1;419:21819:13;;-1:-1:-1;419:21819:13;-1:-1:-1;419:21819:13;;;;;;;-1:-1:-1;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;419:21819:13;;;-1:-1:-1;;419:21819:13;;;;;;;;;;-1:-1:-1;419:21819:13;;;;;4110:224;4188:21;4198:11;4188:21;;;:::i;:::-;419:21819;;;;;;;;4212:1;419:21819;;;;;;;;;;;;;;4212:1;419:21819;;;;;;;4241:28;;;;:::i;:::-;-1:-1:-1;;419:21819:13;;;;;;;4289:37;419:21819;;;;;;;;;;;;4289:37;4110:224::o;19459:306::-;419:21819;;;;19554:17;419:21819;;19606:26;19654:19;19621:11;;419:21819;;;19606:26;:::i;:::-;19654:19;:::i;19550:208::-;419:21819;;-1:-1:-1;419:21819:13;19713:12;419:21819;;;;-1:-1:-1;419:21819:13;;:::i;20088:600::-;419:21819;;;;20240:17;419:21819;;20287:26;20302:11;;419:21819;;;20287:26;:::i;:::-;-1:-1:-1;419:21819:13;;;20338:4;419:21819;;;;;;20338:23;419:21819;-1:-1:-1;;;;;419:21819:13;20237:259;419:21819;;;;;;;;;-1:-1:-1;419:21819:13;20525:13;419:21819;;;;-1:-1:-1;419:21819:13;;;:::i;:::-;20519:40;419:21819;;;-1:-1:-1;419:21819:13;20525:13;419:21819;;;;-1:-1:-1;419:21819:13;;:::i;20516:165::-;20645:24;;;;:::i;20237:259::-;419:21819;;;;-1:-1:-1;419:21819:13;;;20453:12;419:21819;;;;;20453:31;419:21819;-1:-1:-1;;;;;419:21819:13;20237:259;;4985:208:2;;;5121:7;;;;;:::i;:::-;17034:14;;17030:664;;4985:208;;;;;:::o;17030:664::-;419:21819:13;;-1:-1:-1;;;17072:71:2;;735:10:7;17072:71:2;;;419:21819:13;-1:-1:-1;;;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17072:71:2;;17051:1;17072:71;;;17051:1;;17072:71;;;17030:664;-1:-1:-1;17068:616:2;;17331:353;;;:::i;:::-;419:21819:13;;;17381:18:2;;;4276:33;;;;17051:1;17430:25;17072:71;419:21819:13;;17051:1:2;17430:25;17377:293;419:21819:13;17557:95:2;;17068:616;-1:-1:-1;;;;;;419:21819:13;-1:-1:-1;;;17190:51:2;17186:130;;17068:616;17030:664;;;;;;17186:130;4276:33;;;17051:1;17272:25;17072:71;419:21819:13;;17051:1:2;17272:25;17072:71;;;;419:21819:13;17072:71:2;;419:21819:13;17072:71:2;;;;;;419:21819:13;17072:71:2;;;:::i;:::-;;;419:21819:13;;;;;-1:-1:-1;;;;;;419:21819:13;;;;;;17072:71:2;;;;;;;-1:-1:-1;17072:71:2;;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;;;;:::o;16138:241:2:-;-1:-1:-1;419:21819:13;;;5799:7:2;419:21819:13;;;;;;-1:-1:-1;;;;;419:21819:13;;16267:19:2;;16263:88;;16360:12;16138:241;:::o;16263:88::-;7298:31;;;-1:-1:-1;16309:31:2;;419:21819:13;;-1:-1:-1;16309:31:2;9955:327;-1:-1:-1;;;;;419:21819:13;;10022:16:2;;10018:87;;10036:1;419:21819:13;;;5799:7:2;419:21819:13;;;;;;-1:-1:-1;;;;;419:21819:13;9161:18:2;;;;419:21819:13;;;9161:18:2;9157:256;;9955:327;419:21819:13;10036:1:2;419:21819:13;9487:9:2;419:21819:13;;;10036:1:2;419:21819:13;9035:18:2;419:21819:13;;;;;;10036:1:2;419:21819:13;5799:7:2;419:21819:13;;;10036:1:2;419:21819:13;;-1:-1:-1;;;;;419:21819:13;;;;;;;;9577:27:2;;10036:1;9577:27;;10180:96;;;9955:327::o;10180:96::-;10234:31;;;10036:1;10234:31;10036:1;10234:31;419:21819:13;;10036:1:2;10234:31;9157:256;419:21819:13;;;;15346:15:2;419:21819:13;;;;;;;-1:-1:-1;;;;;;419:21819:13;;;;10036:1:2;419:21819:13;9368:9:2;419:21819:13;;;10036:1:2;419:21819:13;;;;;;;;9157:256:2;;1359:130:0;1273:6;419:21819:13;-1:-1:-1;;;;;419:21819:13;735:10:7;1422:23:0;419:21819:13;;1359:130:0:o;419:21819:13:-;;;;;;;;;;;;;;;;;;;;;;;;;637:698:8;759:17;-1:-1:-1;12342:17:11;-1:-1:-1;;;12342:17:11;;;12338:103;;637:698:8;12458:17:11;12467:8;13038:7;12458:17;;;12454:103;;637:698:8;12583:8:11;12574:17;;;12570:103;;637:698:8;12699:7:11;12690:16;;;12686:100;;637:698:8;12812:7:11;12803:16;;;12799:100;;637:698:8;12925:7:11;12916:16;;;12912:100;;637:698:8;13029:16:11;;13025:66;;637:698:8;13038:7:11;921:76:8;817:18;779:1;419:21819:13;;817:18:8;:::i;:::-;849:11;921:76;;;1010:282;-1:-1:-1;;419:21819:13;;-1:-1:-1;;;1115:95:8;;;;419:21819:13;1115:95:8;419:21819:13;1260:10:8;;1256:21;;13038:7:11;1010:282:8;;;;1256:21;1272:5;;637:698;:::o;13025:66:11:-;13075:1;419:21819:13;;;;13025:66:11;;12912:100;12925:7;12996:1;419:21819:13;;;;12912:100:11;;;12799;12812:7;12883:1;419:21819:13;;;;12799:100:11;;;12686;12699:7;12770:1;419:21819:13;;;;12686:100:11;;;12570:103;12583:8;12656:2;419:21819:13;;;;12570:103:11;;;12454;12467:8;12540:2;419:21819:13;;;;12454:103:11;;;12338;-1:-1:-1;12424:2:11;;-1:-1:-1;;;;419:21819:13;;12338:103:11;;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;;;;:::o;:::-;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;:::o;:::-;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;:::o;:::-;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;:::o;16155:3029::-;419:21819;;;;16343:2832;;;419:21819;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;;;;16155:3029;;419:21819;;;;;:::i;:::-;;;;;16343:2832;419:21819;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;16343:2832;419:21819;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;;;;16343:2832;419:21819;;;;;16343:2832;419:21819;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;-1:-1:-1;;;419:21819:13;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;:::i;:::-;;;;:::i;:::-;;;;;;;16343:2832;419:21819;;;;;16343:2832;419:21819;;;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;-1:-1:-1;;;419:21819:13;;;;;-1:-1:-1;;;419:21819:13;;16343:2832;419:21819;16343:2832;;;;;;;419:21819;16343:2832;;;;;:::i;419:21819::-;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;:::o;:::-;;;;;;;;;-1:-1:-1;;;419:21819:13;;;;;;;:::o;476:3382:6:-;;419:21819:13;;766:16:6;762:31;;419:21819:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;1328:1:6;419:21819:13;;;;;;;1333:1:6;419:21819:13;;-1:-1:-1;;;;;419:21819:13;;;;;;1297:39:6;419:21819:13;1328:1:6;419:21819:13;1297:39:6;:::i;:::-;1390:2438;419:21819:13;1390:2438:6;;;;;;;;;419:21819:13;1390:2438:6;;;;;;781:1;1390:2438;;;;;;;;;;1333:1;1390:2438;;;;;;;;1333:1;1390:2438;1333:1;;;1390:2438;;;;3838:13;476:3382;:::o;1390:2438::-;;;-1:-1:-1;;1390:2438:6;;476:3382;:::o;1390:2438::-;-1:-1:-1;1390:2438:6;;;-1:-1:-1;;1390:2438:6;;;-1:-1:-1;;1390:2438:6;;476:3382;:::o;1390:2438::-;1333:1;1308;1390:2438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1328:1;1390:2438;;;;;;;;1333:1;1390:2438;;;;;;;;762:31;419:21819:13;;;;;;;;:::i;:::-;781:1:6;419:21819:13;;784:9:6;:::o;2005:525:8:-;2105:26;419:21819:13;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;-1:-1:-1;;419:21819:13;;;;;;;;;2198:15:8;;;419:21819:13;;;;;;;2223:15:8;419:21819:13;;;2223:15:8;419:21819:13;2281:5:8;419:21819:13;2281:5:8;;;;2401:15;2397:96;;2502:21;2005:525;:::o;2397:96::-;2439:43;;;-1:-1:-1;2439:43:8;2376:1;419:21819:13;;;;;-1:-1:-1;2439:43:8;2288:3;2330:16;2343:3;2330:16;;2319:28;;;;;;-1:-1:-1;;;2319:28:8;;2307:40;;;;:::i;:::-;;2376:1;419:21819:13;2288:3:8;419:21819:13;;;;-1:-1:-1;;419:21819:13;2253:26:8;

Swarm Source

ipfs://83090297fff147107bd847abebefe6b3aadf2fb7d13dd233a9c7644d48c802c4
[ 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.