ETH Price: $3,394.53 (-1.46%)
Gas: 5 Gwei

Token

VariousBooks (VAB)
 

Overview

Max Total Supply

2,814 VAB

Holders

1,016

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Villains by Felt Zine: Deployer
Balance
3 VAB
0x5e080d8b14c1da5936509c2c9ef0168a19304202
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

VARIOUS BOOKS is a collection of 4,500 speculative books generated and stored on chain. Each book is an ERC-721 non-fungible token (NFT) containing attributes of varying rarity, open for speculation and interpretation. http://variousbooks.xyz Attributes & Rarity Checker: http...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VariousBooks

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : VariousBooks.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract VariousBooks is ERC721Enumerable, ReentrancyGuard, Ownable {
  using Counters for Counters.Counter;

  uint256 public constant mintPrice = 25000000000000000;
  bool public saleIsActive = false;
  Counters.Counter private _tokenIdCounter;

  string[] private nouns = [ 
    "Abyss", "Addiction", "Affairs", "Ages", "Animals", "Answer", "Approach", "Arrangement", 
    "Art", "Ashes", "Beauties", "Beginnings", "Birch", "Blossom", "Body", "Books", 
    "Book", "Botany", "Bounty", "Buffalo", "Centuries", "Cities", "City", "Civilization", 
    "Clouds", "Coast", "Continuum", "Corn", "Courage", "Cowboy", "Crows", "Crystals", 
    "Cults", "Darkness", "Days", "Delegation", "Desert", "Destiny", "Development", "Distance", 
    "Division", "Doves", "Dreamer", "Dreams", "Dunes", "Eagle", "Earth", "Elegance", 
    "End", "Environments", "Excavations", "Eye", "Fall", "Fantasies", "Fire", "Fish", 
    "Flame", "Folklore", "Fools", "Force", "Fraud", "Frost", "Future", "Games", 
    "Gemstones", "Goddess", "Grain", "History", "Illusion", "Interaction", "Introduction", 
    "Jury", "Knowledge", "Labours", "Land", "Law", "Legends", "Life", "Light", "Maps", 
    "Masterpieces", "Meadow", "Meditations", "Memoirs", "Memory", "Mist", "Moon", "Mountains", 
    "Mushrooms", "Mysteries", "Mystery", "Network", "Night", "Oasis", "Oceans", 
    "Owls", "Painting", "Palace", "Parrots", "Past", "Patterns", "Peach", "Persona", 
    "Perspective", "Petals", "Planet", "Plants", "Plays", "Poison", "Poetics", "Prehistory", 
    "Problems", "Procedures", "Prophecy", "Purpose", "Quarrel", "Rain", "Reality", "Report", 
    "Republic", "Rescue", "Revolution", "Rice", "River", "Rivers", "Ruins", "Rules", 
    "Seashells", "Seasons", "Serpent", "Shadow", "Sheep", "Ships", "Shores", "Sky", 
    "Smoke", "Snow", "Space", "Spaces", "Sparrow", "Spectrum", "Spirit", "Spirits", 
    "Spring", "Stars", "State", "States", "Steppes", "Stories", "Storm", "Strategies", 
    "Streams", "Structures", "Summer", "Sun", "Surroundings", "Systems", "Tactics", "Tears", 
    "Techniques", "Thorn", "Thought", "Thoughts", "Throne", "Time", "Toad", "Treasures", 
    "Trees", "Tundra", "Valleys", "Vision", "Voices", "Volcanoes", "Wanderer", "Water", 
    "Ways", "Whisper", "Wildflowers", "Wind", "Wings", "Winter", "World", "Worlds", "Years"
  ];

  string[] private adjectives = [
    "Academic", "Ancient", "Basic", "Big", "Burning", "Bright", "Broken", "Bronze", 
    "Cold", "Complete", "Concise", "Consolidated", "Contemporary", "Continuous", "Cursed", "Cyber", 
    "Eastern", "Elemental", "Emerald", "Experimental", "Fallen", "First", "Forgotten", "Frozen", 
    "Fundamental", "Golden", "Greater", "Hardcore", "Hidden", "High", "Historic", "Holistic", 
    "Haunted", "Illustrated", "Informational", "Instant", "Little", "Living", "Lonely", "Lost", 
    "Lunar", "Magnetic", "Misty", "Modern", "New", "Northern", "Phantom", "Polar", 
    "Psychological", "Pure", "Quantum", "Romantic", "Rough", "Sacred", "Secret", "Silent", 
    "Simple", "Solar", "Southern", "Strange", "Supernatural", "Theoretical", "Third", "Total", 
    "Traditional", "Trailing", "Trembling", "Unknown", "Vacant", "Wandering", "Western", "Wild"
  ];

  string[] private prepositions = [
    "or",
    "from",
    "through",
    "with",
    "without",
    "beneath",
    "beyond",
    "before",
    "against",
    "amongst"
  ];

  string[] private formats = [
    "Softcover",
    "Oversized",
    "Mass-Market",
    "Hardcover",
    "Booklet"
  ];

  string[] private conditions = [
    "Fair",
    "Poor",
    "Perfect",
    "Fine",
    "Very Good",
    "Good"
  ];

  string[] private colors = [
    "#B08699",
    "#EBD999",
    "#FA2B00",
    "#0D75FF",
    "#66AB56",
    "#FFAB00",
    "#FFFFFF"
  ];

  uint256[] private formatWeights = [ 25, 38, 65, 85, 100 ];
  uint256[] private conditionWeights = [ 22, 36, 48, 63, 80, 100 ];
  uint256[] private colorWeights = [ 1, 2, 3, 4, 5, 6, 9 ];

  function random(uint256 tokenId, string memory seed) internal pure returns (uint256) {
    return uint256(keccak256(abi.encodePacked(seed, Strings.toString(tokenId))));
  }

  function getFormat(uint256 tokenId) public view returns (string memory) {
    return select(tokenId, "FORMAT", formats, formatWeights);
  }

  function getCondition(uint256 tokenId) public view returns (string memory) {
    return select(tokenId, "CONDITION", conditions, conditionWeights);
  }

  function getCoverColor(uint256 tokenId) public view returns (string memory) {
    return select(tokenId, "COLOR", colors, colorWeights);
  }

  function getSpineColor(uint256 tokenId) public view returns (string memory) {
    if ((random(tokenId, "SPINERARITY") % 15) < 3) {
      return select(tokenId, "SPINECOLOR", colors, colorWeights);
    } else {
      return select(tokenId, "COLOR", colors, colorWeights);
    }
  }

  function getPublisher(uint256 tokenId) public pure returns (uint256) {
    uint256 rand = random(tokenId, "PUBLISHER") % 100;
    return 15 > rand ? 1 : (51 > rand ? 2 : 3);
  }

  function getPages(uint256 tokenId) public pure returns (uint256) {
    return random(tokenId, "PAGES") % 501;
  }

  function getTitle(uint256 tokenId) public view returns (string memory) {
    uint256 rand = random(tokenId, "TITLE");
    uint256 format = rand % 4;
    string memory a1 = adjectives[(rand / 3) % adjectives.length];
    string memory n1 = nouns[(rand / 5) % nouns.length];
    string memory t1 = (rand / 7) % 2 != 0 ? 'The ' : '';
    string memory a2 = adjectives[(rand / 9) % adjectives.length];
    string memory n2 = nouns[(rand / 11) % nouns.length];
    string memory t2 = (rand / 13) % 2 != 0 ? 'the ' : '';
    string memory p = prepositions[(rand / 15) % prepositions.length];
    string memory j = (rand / 17) % 2 != 0 ? 'and' : 'of';

    if (format < 2) {
      return string(abi.encodePacked(
        (format == 1 ? t1 : ''), a1, ' ', n1
      ));
    } else {
      a1 = (rand / 26) % 2 != 0 ? string(abi.encodePacked(a1, ' ')) : '';
      a2 = (rand / 6) % 2 != 0 ? string(abi.encodePacked(a2, ' ')) : '';
      return string(abi.encodePacked(
        t1, a1, n1, ' ', (format == 2 ? p : j), ' ', t2, a2, n2
      ));
    }
  }

  function getTitleOutput(uint256 tokenId) internal view returns (string memory) {
    string memory output;
    bytes memory b = bytes(getTitle(tokenId));
    
    uint256 y = 78;
    uint256 i = 0;
    uint256 e = 0;    
    uint256 ll = 13;
    
    while (true) {
      e = i + ll;
      if (e >= b.length) {
        e = b.length;
      } else {
        while (b[e] != ' ' && e > i) { e--; }
      }

      bytes memory line = new bytes(e-i);
      for (uint k = i; k < e; k++) {
        line[k-i] = _upper(b[k]);
      }

      output = string(abi.encodePacked(output,'<text x="275" y="',Strings.toString(y),'">',line,'</text>'));
      if (y > 300) break;
      
      y += 38;
      if (e >= b.length) break;
      i = e + 1;
    }

    return output;
  }

  function getPublisherOutput(uint256 tokenId) internal pure returns (string memory) {
    uint256 publisher = getPublisher(tokenId);
    return publisher == 1 
      ? '<polygon points="50,430 60,450 40,450" />'
      : (publisher == 2 
      ? '<rect width="20" height="20" x="40" y="430" />' 
      : '<circle r="10" cx="50" cy="440" />');
  }

  function select(uint256 tokenId, string memory key, string[] memory sourceArray, uint256[] memory sourceWeights) internal pure returns (string memory) {
    uint256 val = random(tokenId, key) % sourceWeights[sourceWeights.length - 1];
    for(uint256 i = 0; i < sourceWeights.length; i++) {
      if (sourceWeights[i] > val) {
        return sourceArray[i];
      }
    } 
  }

  function tokenURI(uint256 tokenId) override public view returns (string memory) {
    string memory output = string(abi.encodePacked(
      '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 500"><rect width="500" height="500" />',
      '<rect width="450" height="450" x="25" y="25" rx="25" fill="', getCoverColor(tokenId), '" stroke="#000" />',
      '<rect width="50" height="450" x="25" y="25" fill="', getSpineColor(tokenId), '" stroke="#000" />',
      '<g font-family="serif" font-size="38px" text-anchor="middle">', getTitleOutput(tokenId),
      '<text x="275" y="450">', Strings.toString(tokenId), '</text></g>',
      '<text transform="rotate(90) translate(50 -45)" font-family="serif" font-size="16px">', getFormat(tokenId), ', ', Strings.toString(getPages(tokenId)), ', ', getCondition(tokenId), '</text>',
      getPublisherOutput(tokenId),
      '</svg>'
    ));

    string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Book #', Strings.toString(tokenId), '", "description": "Various Books is a collection of speculative books generated and stored on chain.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
    output = string(abi.encodePacked('data:application/json;base64,', json));

    return output;
  }

  function claim() public payable {
    require(saleIsActive, "Sale is not active");
    uint256 nextId = _tokenIdCounter.current();
    require(mintPrice <= msg.value, "Ether value sent is not correct");
    require(nextId <= 4500, "Token limit reached");
    _safeMint(_msgSender(), nextId);
    _tokenIdCounter.increment();
  }

  function ownerClaim(uint256 tokenId) public nonReentrant onlyOwner {
    require(tokenId > 4500 && tokenId <= 4600, "Token ID invalid");
    _safeMint(owner(), tokenId);
  }

  function flipSaleState() public onlyOwner {
    saleIsActive = !saleIsActive;
  }

  function withdraw(address to, uint256 amount) public nonReentrant onlyOwner {
    require(amount <= address(this).balance, "Amount too high");
    payable(to).transfer(amount);
  }

  function _upper(bytes1 _b1) private pure returns (bytes1) {
    if (_b1 >= 0x61 && _b1 <= 0x7A) {
      return bytes1(uint8(_b1) - 32);
    }
    return _b1;
  }

  constructor() ERC721("VariousBooks", "VAB") Ownable() {
    _tokenIdCounter.increment();
  }
}

/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
  bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

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

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

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

    bytes memory table = TABLE;

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

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

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

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

        mstore(resultPtr, out)

        resultPtr := add(resultPtr, 4)
      }

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

      mstore(result, encodedLen)
    }

    return string(result);
  }
}

File 2 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 4 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 15 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 6 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 7 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 10 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 13 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 14 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCondition","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCoverColor","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFormat","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getPages","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getPublisher","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSpineColor","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTitle","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600b60146101000a81548160ff0219169083151502179055506040518061170001604052806040518060400160405280600581526020017f416279737300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f416464696374696f6e000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f416666616972730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f416765730000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f416e696d616c730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f416e73776572000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f417070726f61636800000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f417272616e67656d656e7400000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f417274000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f417368657300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f426561757469657300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f426567696e6e696e67730000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f426972636800000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f426c6f73736f6d0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f426f64790000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f426f6f6b7300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f426f6f6b0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f426f74616e79000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f426f756e7479000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f42756666616c6f0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f43656e747572696573000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f436974696573000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f436974790000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f436976696c697a6174696f6e000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f436c6f756473000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f436f61737400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f436f6e74696e75756d000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f436f726e0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f436f75726167650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f436f77626f79000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f43726f777300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4372797374616c7300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f43756c747300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4461726b6e65737300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f446179730000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f44656c65676174696f6e0000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f446573657274000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f44657374696e790000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f446576656c6f706d656e7400000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f44697374616e636500000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4469766973696f6e00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f446f76657300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f447265616d65720000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f447265616d73000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f44756e657300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4561676c6500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f456172746800000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f456c6567616e636500000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f456e64000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f456e7669726f6e6d656e7473000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f45786361766174696f6e7300000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f457965000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f46616c6c0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f46616e746173696573000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f466972650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f466973680000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f466c616d6500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f466f6c6b6c6f726500000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f466f6f6c7300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f466f72636500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f467261756400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f46726f737400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f467574757265000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f47616d657300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f47656d73746f6e6573000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f476f64646573730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f477261696e00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f486973746f72790000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f496c6c7573696f6e00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f496e746572616374696f6e00000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f496e74726f64756374696f6e000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4a7572790000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4b6e6f776c65646765000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4c61626f7572730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4c616e640000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f4c6177000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4c6567656e64730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4c6966650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4c6967687400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4d6170730000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f4d6173746572706965636573000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d6561646f77000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f4d656469746174696f6e7300000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4d656d6f6972730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d656d6f7279000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4d6973740000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4d6f6f6e0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4d6f756e7461696e73000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4d757368726f6f6d73000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4d7973746572696573000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4d7973746572790000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4e6574776f726b0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4e6967687400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4f6173697300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4f6365616e73000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4f776c730000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f5061696e74696e6700000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f50616c616365000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f506172726f74730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f506173740000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f5061747465726e7300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f506561636800000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f506572736f6e610000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f506572737065637469766500000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f506574616c73000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f506c616e6574000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f506c616e7473000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f506c61797300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f506f69736f6e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f506f65746963730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f507265686973746f72790000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f50726f626c656d7300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f50726f636564757265730000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f50726f706865637900000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f507572706f73650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f5175617272656c0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f5261696e0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f5265616c6974790000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f5265706f7274000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f52657075626c696300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f526573637565000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f5265766f6c7574696f6e0000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f526963650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f526976657200000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f526976657273000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f5275696e7300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f52756c657300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f5365617368656c6c73000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f536561736f6e730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f53657270656e740000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f536861646f77000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f536865657000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f536869707300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f53686f726573000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f536b79000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f536d6f6b6500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f536e6f770000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f537061636500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f537061636573000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f53706172726f770000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f537065637472756d00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f537069726974000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f537069726974730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f537072696e67000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f537461727300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f537461746500000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f537461746573000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f537465707065730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f53746f726965730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f53746f726d00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f537472617465676965730000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f53747265616d730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f537472756374757265730000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f53756d6d6572000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f53756e000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f537572726f756e64696e6773000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f53797374656d730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f546163746963730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f546561727300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f546563686e69717565730000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f54686f726e00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f54686f756768740000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f54686f756768747300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f5468726f6e65000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f54696d650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f546f61640000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f547265617375726573000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f547265657300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f54756e647261000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f56616c6c6579730000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f566973696f6e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f566f69636573000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f566f6c63616e6f6573000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f57616e646572657200000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f576174657200000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f576179730000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f576869737065720000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f57696c64666c6f7765727300000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f57696e640000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f57696e677300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f57696e746572000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f576f726c6400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f576f726c6473000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f5965617273000000000000000000000000000000000000000000000000000000815250815250600d9060b862002aa39291906200451d565b506040518061090001604052806040518060400160405280600881526020017f41636164656d696300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f416e6369656e740000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f426173696300000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f426967000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4275726e696e670000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f427269676874000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f42726f6b656e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f42726f6e7a65000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f436f6c640000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f436f6d706c65746500000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f436f6e636973650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f436f6e736f6c696461746564000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f436f6e74656d706f72617279000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f436f6e74696e756f75730000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f437572736564000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f437962657200000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4561737465726e0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f456c656d656e74616c000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f456d6572616c640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f4578706572696d656e74616c000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f46616c6c656e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f466972737400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f466f72676f7474656e000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f46726f7a656e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f46756e64616d656e74616c00000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f476f6c64656e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f477265617465720000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f48617264636f726500000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f48696464656e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f486967680000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f486973746f72696300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f486f6c697374696300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4861756e7465640000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f496c6c757374726174656400000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f496e666f726d6174696f6e616c0000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f496e7374616e740000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c6974746c65000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c6976696e67000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4c6f6e656c79000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4c6f73740000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4c756e617200000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4d61676e6574696300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4d6973747900000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f4d6f6465726e000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f4e6577000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4e6f72746865726e00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f5068616e746f6d0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f506f6c617200000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f50737963686f6c6f676963616c0000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f507572650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f5175616e74756d0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f526f6d616e74696300000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f526f75676800000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f536163726564000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f536563726574000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f53696c656e74000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f53696d706c65000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f536f6c617200000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f536f75746865726e00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f537472616e67650000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f53757065726e61747572616c000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f5468656f7265746963616c00000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f546869726400000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f546f74616c00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f547261646974696f6e616c00000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f547261696c696e6700000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f5472656d626c696e67000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f556e6b6e6f776e0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f566163616e74000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f57616e646572696e67000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f5765737465726e0000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f57696c6400000000000000000000000000000000000000000000000000000000815250815250600e90604862003b5892919062004584565b506040518061014001604052806040518060400160405280600281526020017f6f7200000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f66726f6d0000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f7468726f7567680000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f776974680000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f776974686f75740000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f62656e656174680000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f6265796f6e64000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f6265666f7265000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f616761696e73740000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f616d6f6e67737400000000000000000000000000000000000000000000000000815250815250600f90600a62003dc3929190620045eb565b506040518060a001604052806040518060400160405280600981526020017f536f6674636f766572000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f4f76657273697a6564000000000000000000000000000000000000000000000081525081526020016040518060400160405280600b81526020017f4d6173732d4d61726b657400000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f48617264636f766572000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f426f6f6b6c657400000000000000000000000000000000000000000000000000815250815250601090600562003f0692919062004652565b506040518060c001604052806040518060400160405280600481526020017f466169720000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f506f6f720000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f506572666563740000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f46696e650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f5665727920476f6f64000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f476f6f6400000000000000000000000000000000000000000000000000000000815250815250601190600662004084929190620046b9565b506040518060e001604052806040518060400160405280600781526020017f234230383639390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234542443939390000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234641324230300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233044373546460000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f233636414235360000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234646414230300000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f234646464646460000000000000000000000000000000000000000000000000081525081525060129060076200423d92919062004720565b506040518060a00160405280601960ff168152602001602660ff168152602001604160ff168152602001605560ff168152602001606460ff1681525060139060056200428b92919062004787565b506040518060c00160405280601660ff168152602001602460ff168152602001603060ff168152602001603f60ff168152602001605060ff168152602001606460ff168152506014906006620042e3929190620047de565b506040518060e00160405280600160ff168152602001600260ff168152602001600360ff168152602001600460ff168152602001600560ff168152602001600660ff168152602001600960ff1681525060159060076200434592919062004835565b503480156200435357600080fd5b506040518060400160405280600c81526020017f566172696f7573426f6f6b7300000000000000000000000000000000000000008152506040518060400160405280600381526020017f56414200000000000000000000000000000000000000000000000000000000008152508160009080519060200190620043d89291906200488c565b508060019080519060200190620043f19291906200488c565b5050506001600a819055506200441c620044106200443960201b60201c565b6200444160201b60201c565b62004433600c6200450760201b620027d81760201c565b62004a0f565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b82805482825590600052602060002090810192821562004571579160200282015b82811115620045705782518290805190602001906200455f9291906200488c565b50916020019190600101906200453e565b5b5090506200458091906200491d565b5090565b828054828255906000526020600020908101928215620045d8579160200282015b82811115620045d7578251829080519060200190620045c69291906200488c565b5091602001919060010190620045a5565b5b509050620045e791906200491d565b5090565b8280548282559060005260206000209081019282156200463f579160200282015b828111156200463e5782518290805190602001906200462d9291906200488c565b50916020019190600101906200460c565b5b5090506200464e91906200491d565b5090565b828054828255906000526020600020908101928215620046a6579160200282015b82811115620046a5578251829080519060200190620046949291906200488c565b509160200191906001019062004673565b5b509050620046b591906200491d565b5090565b8280548282559060005260206000209081019282156200470d579160200282015b828111156200470c578251829080519060200190620046fb9291906200488c565b5091602001919060010190620046da565b5b5090506200471c91906200491d565b5090565b82805482825590600052602060002090810192821562004774579160200282015b8281111562004773578251829080519060200190620047629291906200488c565b509160200191906001019062004741565b5b5090506200478391906200491d565b5090565b828054828255906000526020600020908101928215620047cb579160200282015b82811115620047ca578251829060ff16905591602001919060010190620047a8565b5b509050620047da919062004945565b5090565b82805482825590600052602060002090810192821562004822579160200282015b8281111562004821578251829060ff16905591602001919060010190620047ff565b5b50905062004831919062004945565b5090565b82805482825590600052602060002090810192821562004879579160200282015b8281111562004878578251829060ff1690559160200191906001019062004856565b5b50905062004888919062004945565b5090565b8280546200489a90620049aa565b90600052602060002090601f016020900481019282620048be57600085556200490a565b82601f10620048d957805160ff19168380011785556200490a565b828001600101855582156200490a579182015b8281111562004909578251825591602001919060010190620048ec565b5b50905062004919919062004945565b5090565b5b8082111562004941576000818162004937919062004964565b506001016200491e565b5090565b5b808211156200496057600081600090555060010162004946565b5090565b5080546200497290620049aa565b6000825580601f10620049865750620049a7565b601f016020900490600052602060002090810190620049a6919062004945565b5b50565b60006002820490506001821680620049c357607f821691505b60208210811415620049da57620049d9620049e0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615fce8062004a1f6000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610743578063eb8d244414610780578063f2fde38b146107ab578063f3fef3a3146107d4576101e3565b8063a22cb46514610677578063b88d4fde146106a0578063bc07e867146106c9578063c87b56dd14610706576101e3565b80638ee7f6cb116100d15780638ee7f6cb14610595578063929a79b1146105d257806395d89b411461060f578063969cb7c31461063a576101e3565b8063715018a6146104d95780637bf212f8146104f057806380eeba071461052d5780638da5cb5b1461056a576101e3565b806334918dfd1161017a5780634f6ccce7116101495780634f6ccce7146103f75780636352211e146104345780636817c76c1461047157806370a082311461049c576101e3565b806334918dfd1461038457806342842e0e1461039b578063434f48c4146103c45780634e71d92d146103ed576101e3565b80630fd89c87116101b65780630fd89c87146102b657806318160ddd146102f357806323b872dd1461031e5780632f745c5914610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190614271565b6107fd565b60405161021c9190614ca6565b60405180910390f35b34801561023157600080fd5b5061023a610877565b6040516102479190614cc1565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906142c3565b610909565b6040516102849190614c3f565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190614235565b61098e565b005b3480156102c257600080fd5b506102dd60048036038101906102d891906142c3565b610aa6565b6040516102ea9190614cc1565b60405180910390f35b3480156102ff57600080fd5b50610308610c11565b6040516103159190614fc3565b60405180910390f35b34801561032a57600080fd5b506103456004803603810190610340919061412f565b610c1e565b005b34801561035357600080fd5b5061036e60048036038101906103699190614235565b610c7e565b60405161037b9190614fc3565b60405180910390f35b34801561039057600080fd5b50610399610d23565b005b3480156103a757600080fd5b506103c260048036038101906103bd919061412f565b610dcb565b005b3480156103d057600080fd5b506103eb60048036038101906103e691906142c3565b610deb565b005b6103f5610f23565b005b34801561040357600080fd5b5061041e600480360381019061041991906142c3565b61102d565b60405161042b9190614fc3565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906142c3565b6110c4565b6040516104689190614c3f565b60405180910390f35b34801561047d57600080fd5b50610486611176565b6040516104939190614fc3565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be91906140ca565b611181565b6040516104d09190614fc3565b60405180910390f35b3480156104e557600080fd5b506104ee611239565b005b3480156104fc57600080fd5b50610517600480360381019061051291906142c3565b6112c1565b6040516105249190614cc1565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f91906142c3565b61142c565b6040516105619190614cc1565b60405180910390f35b34801561057657600080fd5b5061057f611754565b60405161058c9190614c3f565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b791906142c3565b61177e565b6040516105c99190614cc1565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f491906142c3565b6118e9565b6040516106069190614cc1565b60405180910390f35b34801561061b57600080fd5b506106246120ac565b6040516106319190614cc1565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c91906142c3565b61213e565b60405161066e9190614fc3565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906141f9565b6121bb565b005b3480156106ac57600080fd5b506106c760048036038101906106c2919061417e565b61233c565b005b3480156106d557600080fd5b506106f060048036038101906106eb91906142c3565b61239e565b6040516106fd9190614fc3565b60405180910390f35b34801561071257600080fd5b5061072d600480360381019061072891906142c3565b6123f3565b60405161073a9190614cc1565b60405180910390f35b34801561074f57600080fd5b5061076a600480360381019061076591906140f3565b6124d9565b6040516107779190614ca6565b60405180910390f35b34801561078c57600080fd5b5061079561256d565b6040516107a29190614ca6565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd91906140ca565b612580565b005b3480156107e057600080fd5b506107fb60048036038101906107f69190614235565b612678565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610870575061086f826127ee565b5b9050919050565b606060008054610886906152b8565b80601f01602080910402602001604051908101604052809291908181526020018280546108b2906152b8565b80156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b5050505050905090565b6000610914826128d0565b610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a90614ec3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610999826110c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190614f43565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2961293c565b73ffffffffffffffffffffffffffffffffffffffff161480610a585750610a5781610a5261293c565b6124d9565b5b610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90614e23565b60405180910390fd5b610aa18383612944565b505050565b6060610c0a826040518060400160405280600581526020017f434f4c4f520000000000000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b82821015610bb0578382906000526020600020018054610b23906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4f906152b8565b8015610b9c5780601f10610b7157610100808354040283529160200191610b9c565b820191906000526020600020905b815481529060010190602001808311610b7f57829003601f168201915b505050505081526020019060010190610b04565b505050506015805480602002602001604051908101604052809291908181526020018280548015610c0057602002820191906000526020600020905b815481526020019060010190808311610bec575b50505050506129fd565b9050919050565b6000600880549050905090565b610c2f610c2961293c565b82612b21565b610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590614f63565b60405180910390fd5b610c79838383612bff565b505050565b6000610c8983611181565b8210610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190614ce3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d2b61293c565b73ffffffffffffffffffffffffffffffffffffffff16610d49611754565b73ffffffffffffffffffffffffffffffffffffffff1614610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690614ee3565b60405180910390fd5b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b610de68383836040518060200160405280600081525061233c565b505050565b6002600a541415610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890614fa3565b60405180910390fd5b6002600a81905550610e4161293c565b73ffffffffffffffffffffffffffffffffffffffff16610e5f611754565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90614ee3565b60405180910390fd5b61119481118015610ec857506111f88111155b610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90614f03565b60405180910390fd5b610f18610f12611754565b82612e5b565b6001600a8190555050565b600b60149054906101000a900460ff16610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990614dc3565b60405180910390fd5b6000610f7e600c612e79565b9050346658d15e176280001115610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190614de3565b60405180910390fd5b61119481111561100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690614d63565b60405180910390fd5b61102061101a61293c565b82612e5b565b61102a600c6127d8565b50565b6000611037610c11565b8210611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90614f83565b60405180910390fd5b600882815481106110b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490614e83565b60405180910390fd5b80915050919050565b6658d15e1762800081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990614e63565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61124161293c565b73ffffffffffffffffffffffffffffffffffffffff1661125f611754565b73ffffffffffffffffffffffffffffffffffffffff16146112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90614ee3565b60405180910390fd5b6112bf6000612e87565b565b6060611425826040518060400160405280600981526020017f434f4e444954494f4e00000000000000000000000000000000000000000000008152506011805480602002602001604051908101604052809291908181526020016000905b828210156113cb57838290600052602060002001805461133e906152b8565b80601f016020809104026020016040519081016040528092919081815260200182805461136a906152b8565b80156113b75780601f1061138c576101008083540402835291602001916113b7565b820191906000526020600020905b81548152906001019060200180831161139a57829003601f168201915b50505050508152602001906001019061131f565b50505050601480548060200260200160405190810160405280929190818152602001828054801561141b57602002820191906000526020600020905b815481526020019060010190808311611407575b50505050506129fd565b9050919050565b60606003600f611471846040518060400160405280600b81526020017f5350494e45524152495459000000000000000000000000000000000000000000815250612f4d565b61147b9190615364565b10156115ea576115e3826040518060400160405280600a81526020017f5350494e45434f4c4f52000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b828210156115895783829060005260206000200180546114fc906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611528906152b8565b80156115755780601f1061154a57610100808354040283529160200191611575565b820191906000526020600020905b81548152906001019060200180831161155857829003601f168201915b5050505050815260200190600101906114dd565b5050505060158054806020026020016040519081016040528092919081815260200182805480156115d957602002820191906000526020600020905b8154815260200190600101908083116115c5575b50505050506129fd565b905061174f565b61174c826040518060400160405280600581526020017f434f4c4f520000000000000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b828210156116f2578382906000526020600020018054611665906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611691906152b8565b80156116de5780601f106116b3576101008083540402835291602001916116de565b820191906000526020600020905b8154815290600101906020018083116116c157829003601f168201915b505050505081526020019060010190611646565b50505050601580548060200260200160405190810160405280929190818152602001828054801561174257602002820191906000526020600020905b81548152602001906001019080831161172e575b50505050506129fd565b90505b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606118e2826040518060400160405280600681526020017f464f524d415400000000000000000000000000000000000000000000000000008152506010805480602002602001604051908101604052809291908181526020016000905b828210156118885783829060005260206000200180546117fb906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611827906152b8565b80156118745780601f1061184957610100808354040283529160200191611874565b820191906000526020600020905b81548152906001019060200180831161185757829003601f168201915b5050505050815260200190600101906117dc565b5050505060138054806020026020016040519081016040528092919081815260200182805480156118d857602002820191906000526020600020905b8154815260200190600101908083116118c4575b50505050506129fd565b9050919050565b6060600061192c836040518060400160405280600581526020017f5449544c45000000000000000000000000000000000000000000000000000000815250612f4d565b9050600060048261193d9190615364565b90506000600e808054905060038561195591906150d8565b61195f9190615364565b81548110611996577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200180546119ab906152b8565b80601f01602080910402602001604051908101604052809291908181526020018280546119d7906152b8565b8015611a245780601f106119f957610100808354040283529160200191611a24565b820191906000526020600020905b815481529060010190602001808311611a0757829003601f168201915b505050505090506000600d8080549050600586611a4191906150d8565b611a4b9190615364565b81548110611a82577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018054611a97906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac3906152b8565b8015611b105780601f10611ae557610100808354040283529160200191611b10565b820191906000526020600020905b815481529060010190602001808311611af357829003601f168201915b505050505090506000806002600787611b2991906150d8565b611b339190615364565b1415611b4e5760405180602001604052806000815250611b85565b6040518060400160405280600481526020017f54686520000000000000000000000000000000000000000000000000000000008152505b90506000600e8080549050600988611b9d91906150d8565b611ba79190615364565b81548110611bde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018054611bf3906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f906152b8565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b505050505090506000600d8080549050600b89611c8991906150d8565b611c939190615364565b81548110611cca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018054611cdf906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0b906152b8565b8015611d585780601f10611d2d57610100808354040283529160200191611d58565b820191906000526020600020905b815481529060010190602001808311611d3b57829003601f168201915b505050505090506000806002600d8a611d7191906150d8565b611d7b9190615364565b1415611d965760405180602001604052806000815250611dcd565b6040518060400160405280600481526020017f74686520000000000000000000000000000000000000000000000000000000008152505b90506000600f8080549050600f8b611de591906150d8565b611def9190615364565b81548110611e26577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018054611e3b906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611e67906152b8565b8015611eb45780601f10611e8957610100808354040283529160200191611eb4565b820191906000526020600020905b815481529060010190602001808311611e9757829003601f168201915b50505050509050600080600260118c611ecd91906150d8565b611ed79190615364565b1415611f18576040518060400160405280600281526020017f6f66000000000000000000000000000000000000000000000000000000000000815250611f4f565b6040518060400160405280600381526020017f616e6400000000000000000000000000000000000000000000000000000000008152505b90506002891015611fad5760018914611f775760405180602001604052806000815250611f79565b855b8888604051602001611f8d93929190614a27565b6040516020818303038152906040529a50505050505050505050506120a7565b60006002601a8c611fbe91906150d8565b611fc89190615364565b1415611fe35760405180602001604052806000815250612004565b87604051602001611ff49190614ab5565b6040516020818303038152906040525b97506000600260068c61201791906150d8565b6120219190615364565b141561203c576040518060200160405280600081525061205d565b8460405160200161204d9190614ab5565b6040516020818303038152906040525b945085888860028c146120705783612072565b845b86898960405160200161208b97969594939291906149ac565b6040516020818303038152906040529a50505050505050505050505b919050565b6060600180546120bb906152b8565b80601f01602080910402602001604051908101604052809291908181526020018280546120e7906152b8565b80156121345780601f1061210957610100808354040283529160200191612134565b820191906000526020600020905b81548152906001019060200180831161211757829003601f168201915b5050505050905090565b6000806064612182846040518060400160405280600981526020017f5055424c49534845520000000000000000000000000000000000000000000000815250612f4d565b61218c9190615364565b905080600f116121ad57806033116121a55760036121a8565b60025b6121b0565b60015b60ff16915050919050565b6121c361293c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222890614da3565b60405180910390fd5b806005600061223e61293c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122eb61293c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123309190614ca6565b60405180910390a35050565b61234d61234761293c565b83612b21565b61238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390614f63565b60405180910390fd5b61239884848484612f8b565b50505050565b60006101f56123e2836040518060400160405280600581526020017f5041474553000000000000000000000000000000000000000000000000000000815250612f4d565b6123ec9190615364565b9050919050565b6060600061240083610aa6565b6124098461142c565b61241285612fe7565b61241b866132bc565b6124248761177e565b6124356124308961239e565b6132bc565b61243e896112c1565b6124478a613469565b60405160200161245e989796959493929190614b3e565b604051602081830303815290604052905060006124ab61247d856132bc565b612486846134e7565b604051602001612497929190614ad7565b6040516020818303038152906040526134e7565b9050806040516020016124be9190614b1c565b60405160208183030381529060405291508192505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60149054906101000a900460ff1681565b61258861293c565b73ffffffffffffffffffffffffffffffffffffffff166125a6611754565b73ffffffffffffffffffffffffffffffffffffffff16146125fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f390614ee3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561266c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266390614d23565b60405180910390fd5b61267581612e87565b50565b6002600a5414156126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590614fa3565b60405180910390fd5b6002600a819055506126ce61293c565b73ffffffffffffffffffffffffffffffffffffffff166126ec611754565b73ffffffffffffffffffffffffffffffffffffffff1614612742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273990614ee3565b60405180910390fd5b47811115612785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277c90614e43565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156127cb573d6000803e3d6000fd5b506001600a819055505050565b6001816000016000828254019250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128b957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128c957506128c8826136a5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166129b7836110c4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060008260018451612a109190615163565b81518110612a47577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612a598787612f4d565b612a639190615364565b905060005b8351811015612b165781848281518110612aab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101511115612b0357848181518110612af2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015192505050612b19565b8080612b0e9061531b565b915050612a68565b50505b949350505050565b6000612b2c826128d0565b612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6290614e03565b60405180910390fd5b6000612b76836110c4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612be557508373ffffffffffffffffffffffffffffffffffffffff16612bcd84610909565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bf65750612bf581856124d9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c1f826110c4565b73ffffffffffffffffffffffffffffffffffffffff1614612c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6c90614f23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdc90614d83565b60405180910390fd5b612cf083838361370f565b612cfb600082612944565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d4b9190615163565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612da29190615082565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612e75828260405180602001604052806000815250613823565b5050565b600081600001549050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081612f59846132bc565b604051602001612f6a929190614988565b6040516020818303038152906040528051906020012060001c905092915050565b612f96848484612bff565b612fa28484848461387e565b612fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd890614d03565b60405180910390fd5b50505050565b6060806000612ff5846118e9565b90506000604e90506000806000600d90505b6001156132ae57808361301a9190615082565b91508451821061302d57845191506130db565b5b7f2000000000000000000000000000000000000000000000000000000000000000858381518110613088577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141580156130c257508282115b156130da5781806130d29061528e565b92505061302e565b5b600083836130e99190615163565b67ffffffffffffffff811115613128577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561315a5781602001600182028036833780820191505090505b50905060008490505b8381101561323d576131b78782815181106131a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b613a15565b8286836131c49190615163565b815181106131fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806132359061531b565b915050613163565b5086613248866132bc565b8260405160200161325b93929190614a63565b604051602081830303815290604052965061012c85111561327c57506132ae565b6026856132899190615082565b94508551831061329957506132ae565b6001836132a69190615082565b935050613007565b859650505050505050919050565b60606000821415613304576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613464565b600082905060005b6000821461333657808061331f9061531b565b915050600a8261332f91906150d8565b915061330c565b60008167ffffffffffffffff811115613378577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133aa5781602001600182028036833780820191505090505b5090505b6000851461345d576001826133c39190615163565b9150600a856133d29190615364565b60306133de9190615082565b60f81b81838151811061341a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561345691906150d8565b94506133ae565b8093505050505b919050565b606060006134768361213e565b9050600181146134c557600281146134a657604051806060016040528060228152602001615ee0602291396134c0565b6040518060600160405280602e8152602001615f6b602e91395b6134df565b604051806060016040528060298152602001615f42602991395b915050919050565b6060600082519050600081141561351057604051806020016040528060008152509150506136a0565b600060036002836135219190615082565b61352b91906150d8565b60046135379190615109565b905060006020826135489190615082565b67ffffffffffffffff811115613587577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135b95781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615f02604091399050600181016020830160005b8681101561365d5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b905080845260048401935050506135e4565b506003860660018114613677576002811461368757613692565b613d3d60f01b6002830352613692565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61371a838383613a9b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561375d5761375881613aa0565b61379c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461379b5761379a8382613ae9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137df576137da81613c56565b61381e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461381d5761381c8282613d99565b5b5b505050565b61382d8383613e18565b61383a600084848461387e565b613879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387090614d03565b60405180910390fd5b505050565b600061389f8473ffffffffffffffffffffffffffffffffffffffff16613fe6565b15613a08578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138c861293c565b8786866040518563ffffffff1660e01b81526004016138ea9493929190614c5a565b602060405180830381600087803b15801561390457600080fd5b505af192505050801561393557506040513d601f19601f82011682018060405250810190613932919061429a565b60015b6139b8573d8060008114613965576040519150601f19603f3d011682016040523d82523d6000602084013e61396a565b606091505b506000815114156139b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139a790614d03565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a0d565b600190505b949350505050565b6000606160f81b827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015613a735750607a60f81b827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b15613a925760208260f81c613a889190615197565b60f81b9050613a96565b8190505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613af684611181565b613b009190615163565b9050600060076000848152602001908152602001600020549050818114613be5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613c6a9190615163565b9050600060096000848152602001908152602001600020549050600060088381548110613cc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613d08577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613da483611181565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e7f90614ea3565b60405180910390fd5b613e91816128d0565b15613ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ec890614d43565b60405180910390fd5b613edd6000838361370f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f2d9190615082565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b600061400c61400784615003565b614fde565b90508281526020810184848401111561402457600080fd5b61402f84828561524c565b509392505050565b60008135905061404681615e83565b92915050565b60008135905061405b81615e9a565b92915050565b60008135905061407081615eb1565b92915050565b60008151905061408581615eb1565b92915050565b600082601f83011261409c57600080fd5b81356140ac848260208601613ff9565b91505092915050565b6000813590506140c481615ec8565b92915050565b6000602082840312156140dc57600080fd5b60006140ea84828501614037565b91505092915050565b6000806040838503121561410657600080fd5b600061411485828601614037565b925050602061412585828601614037565b9150509250929050565b60008060006060848603121561414457600080fd5b600061415286828701614037565b935050602061416386828701614037565b9250506040614174868287016140b5565b9150509250925092565b6000806000806080858703121561419457600080fd5b60006141a287828801614037565b94505060206141b387828801614037565b93505060406141c4878288016140b5565b925050606085013567ffffffffffffffff8111156141e157600080fd5b6141ed8782880161408b565b91505092959194509250565b6000806040838503121561420c57600080fd5b600061421a85828601614037565b925050602061422b8582860161404c565b9150509250929050565b6000806040838503121561424857600080fd5b600061425685828601614037565b9250506020614267858286016140b5565b9150509250929050565b60006020828403121561428357600080fd5b600061429184828501614061565b91505092915050565b6000602082840312156142ac57600080fd5b60006142ba84828501614076565b91505092915050565b6000602082840312156142d557600080fd5b60006142e3848285016140b5565b91505092915050565b6142f5816151cb565b82525050565b614304816151dd565b82525050565b600061431582615034565b61431f818561504a565b935061432f81856020860161525b565b61433881615451565b840191505092915050565b600061434e82615034565b614358818561505b565b935061436881856020860161525b565b80840191505092915050565b600061437f8261503f565b6143898185615066565b935061439981856020860161525b565b6143a281615451565b840191505092915050565b60006143b88261503f565b6143c28185615077565b93506143d281856020860161525b565b80840191505092915050565b60006143eb605483615077565b91506143f682615462565b605482019050919050565b600061440e600b83615077565b9150614419826154d7565b600b82019050919050565b6000614431602b83615066565b915061443c82615500565b604082019050919050565b6000614454603283615066565b915061445f8261554f565b604082019050919050565b6000614477601683615077565b91506144828261559e565b601682019050919050565b600061449a602683615066565b91506144a5826155c7565b604082019050919050565b60006144bd601c83615066565b91506144c882615616565b602082019050919050565b60006144e0608b83615077565b91506144eb8261563f565b608b82019050919050565b6000614503601183615077565b915061450e82615700565b601182019050919050565b6000614526601383615066565b915061453182615729565b602082019050919050565b6000614549602483615066565b915061455482615752565b604082019050919050565b600061456c601983615066565b9150614577826157a1565b602082019050919050565b600061458f601283615066565b915061459a826157ca565b602082019050919050565b60006145b2601f83615066565b91506145bd826157f3565b602082019050919050565b60006145d5602c83615066565b91506145e08261581c565b604082019050919050565b60006145f8601083615077565b91506146038261586b565b601082019050919050565b600061461b600183615077565b915061462682615894565b600182019050919050565b600061463e603883615066565b9150614649826158bd565b604082019050919050565b6000614661600f83615066565b915061466c8261590c565b602082019050919050565b6000614684602a83615066565b915061468f82615935565b604082019050919050565b60006146a7602983615066565b91506146b282615984565b604082019050919050565b60006146ca600283615077565b91506146d5826159d3565b600282019050919050565b60006146ed600783615077565b91506146f8826159fc565b600782019050919050565b6000614710602083615066565b915061471b82615a25565b602082019050919050565b6000614733602c83615066565b915061473e82615a4e565b604082019050919050565b6000614756602083615066565b915061476182615a9d565b602082019050919050565b6000614779601083615066565b915061478482615ac6565b602082019050919050565b600061479c602983615066565b91506147a782615aef565b604082019050919050565b60006147bf603b83615077565b91506147ca82615b3e565b603b82019050919050565b60006147e2602183615066565b91506147ed82615b8d565b604082019050919050565b6000614805600283615077565b915061481082615bdc565b600282019050919050565b6000614828601d83615077565b915061483382615c05565b601d82019050919050565b600061484b603d83615077565b915061485682615c2e565b603d82019050919050565b600061486e603183615066565b915061487982615c7d565b604082019050919050565b6000614891602c83615066565b915061489c82615ccc565b604082019050919050565b60006148b4600283615077565b91506148bf82615d1b565b600282019050919050565b60006148d7601283615077565b91506148e282615d44565b601282019050919050565b60006148fa601f83615066565b915061490582615d6d565b602082019050919050565b600061491d605f83615077565b915061492882615d96565b605f82019050919050565b6000614940600683615077565b915061494b82615e0b565b600682019050919050565b6000614963603283615077565b915061496e82615e34565b603282019050919050565b61498281615235565b82525050565b600061499482856143ad565b91506149a082846143ad565b91508190509392505050565b60006149b8828a6143ad565b91506149c482896143ad565b91506149d082886143ad565b91506149db8261460e565b91506149e782876143ad565b91506149f28261460e565b91506149fe82866143ad565b9150614a0a82856143ad565b9150614a1682846143ad565b915081905098975050505050505050565b6000614a3382866143ad565b9150614a3f82856143ad565b9150614a4a8261460e565b9150614a5682846143ad565b9150819050949350505050565b6000614a6f82866143ad565b9150614a7a826144f6565b9150614a8682856143ad565b9150614a91826148a7565b9150614a9d8284614343565b9150614aa8826146e0565b9150819050949350505050565b6000614ac182846143ad565b9150614acc8261460e565b915081905092915050565b6000614ae2826145eb565b9150614aee82856143ad565b9150614af9826144d3565b9150614b0582846143ad565b9150614b10826146bd565b91508190509392505050565b6000614b278261481b565b9150614b3382846143ad565b915081905092915050565b6000614b4982614910565b9150614b54826147b2565b9150614b60828b6143ad565b9150614b6b826148ca565b9150614b7682614956565b9150614b82828a6143ad565b9150614b8d826148ca565b9150614b988261483e565b9150614ba482896143ad565b9150614baf8261446a565b9150614bbb82886143ad565b9150614bc682614401565b9150614bd1826143de565b9150614bdd82876143ad565b9150614be8826147f8565b9150614bf482866143ad565b9150614bff826147f8565b9150614c0b82856143ad565b9150614c16826146e0565b9150614c2282846143ad565b9150614c2d82614933565b91508190509998505050505050505050565b6000602082019050614c5460008301846142ec565b92915050565b6000608082019050614c6f60008301876142ec565b614c7c60208301866142ec565b614c896040830185614979565b8181036060830152614c9b818461430a565b905095945050505050565b6000602082019050614cbb60008301846142fb565b92915050565b60006020820190508181036000830152614cdb8184614374565b905092915050565b60006020820190508181036000830152614cfc81614424565b9050919050565b60006020820190508181036000830152614d1c81614447565b9050919050565b60006020820190508181036000830152614d3c8161448d565b9050919050565b60006020820190508181036000830152614d5c816144b0565b9050919050565b60006020820190508181036000830152614d7c81614519565b9050919050565b60006020820190508181036000830152614d9c8161453c565b9050919050565b60006020820190508181036000830152614dbc8161455f565b9050919050565b60006020820190508181036000830152614ddc81614582565b9050919050565b60006020820190508181036000830152614dfc816145a5565b9050919050565b60006020820190508181036000830152614e1c816145c8565b9050919050565b60006020820190508181036000830152614e3c81614631565b9050919050565b60006020820190508181036000830152614e5c81614654565b9050919050565b60006020820190508181036000830152614e7c81614677565b9050919050565b60006020820190508181036000830152614e9c8161469a565b9050919050565b60006020820190508181036000830152614ebc81614703565b9050919050565b60006020820190508181036000830152614edc81614726565b9050919050565b60006020820190508181036000830152614efc81614749565b9050919050565b60006020820190508181036000830152614f1c8161476c565b9050919050565b60006020820190508181036000830152614f3c8161478f565b9050919050565b60006020820190508181036000830152614f5c816147d5565b9050919050565b60006020820190508181036000830152614f7c81614861565b9050919050565b60006020820190508181036000830152614f9c81614884565b9050919050565b60006020820190508181036000830152614fbc816148ed565b9050919050565b6000602082019050614fd86000830184614979565b92915050565b6000614fe8614ff9565b9050614ff482826152ea565b919050565b6000604051905090565b600067ffffffffffffffff82111561501e5761501d615422565b5b61502782615451565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061508d82615235565b915061509883615235565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150cd576150cc615395565b5b828201905092915050565b60006150e382615235565b91506150ee83615235565b9250826150fe576150fd6153c4565b5b828204905092915050565b600061511482615235565b915061511f83615235565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561515857615157615395565b5b828202905092915050565b600061516e82615235565b915061517983615235565b92508282101561518c5761518b615395565b5b828203905092915050565b60006151a28261523f565b91506151ad8361523f565b9250828210156151c0576151bf615395565b5b828203905092915050565b60006151d682615215565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561527957808201518184015260208101905061525e565b83811115615288576000848401525b50505050565b600061529982615235565b915060008214156152ad576152ac615395565b5b600182039050919050565b600060028204905060018216806152d057607f821691505b602082108114156152e4576152e36153f3565b5b50919050565b6152f382615451565b810181811067ffffffffffffffff8211171561531257615311615422565b5b80604052505050565b600061532682615235565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561535957615358615395565b5b600182019050919050565b600061536f82615235565b915061537a83615235565b92508261538a576153896153c4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f3c74657874207472616e73666f726d3d22726f7461746528393029207472616e60008201527f736c617465283530202d3435292220666f6e742d66616d696c793d227365726960208201527f662220666f6e742d73697a653d2231367078223e000000000000000000000000604082015250565b7f3c2f746578743e3c2f673e000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f3c7465787420783d223237352220793d22343530223e00000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f222c20226465736372697074696f6e223a2022566172696f757320426f6f6b7360008201527f206973206120636f6c6c656374696f6e206f662073706563756c61746976652060208201527f626f6f6b732067656e65726174656420616e642073746f726564206f6e20636860408201527f61696e2e222c2022696d616765223a2022646174613a696d6167652f7376672b60608201527f786d6c3b6261736536342c000000000000000000000000000000000000000000608082015250565b7f3c7465787420783d223237352220793d22000000000000000000000000000000600082015250565b7f546f6b656e206c696d6974207265616368656400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a2022426f6f6b202300000000000000000000000000000000600082015250565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f416d6f756e7420746f6f20686967680000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f3c2f746578743e00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f3c726563742077696474683d2234353022206865696768743d2234353022207860008201527f3d2232352220793d223235222072783d223235222066696c6c3d220000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f2c20000000000000000000000000000000000000000000000000000000000000600082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f3c6720666f6e742d66616d696c793d2273657269662220666f6e742d73697a6560008201527f3d22333870782220746578742d616e63686f723d226d6964646c65223e000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f223e000000000000000000000000000000000000000000000000000000000000600082015250565b7f22207374726f6b653d222330303022202f3e0000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222076696577426f783d223020302035303020353030223e3c7260208201527f6563742077696474683d2235303022206865696768743d2235303022202f3e00604082015250565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b7f3c726563742077696474683d22353022206865696768743d223435302220783d60008201527f2232352220793d223235222066696c6c3d220000000000000000000000000000602082015250565b615e8c816151cb565b8114615e9757600080fd5b50565b615ea3816151dd565b8114615eae57600080fd5b50565b615eba816151e9565b8114615ec557600080fd5b50565b615ed181615235565b8114615edc57600080fd5b5056fe3c636972636c6520723d223130222063783d223530222063793d2234343022202f3e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c706f6c79676f6e20706f696e74733d2235302c3433302036302c3435302034302c34353022202f3e3c726563742077696474683d22323022206865696768743d2232302220783d2234302220793d2234333022202f3ea2646970667358221220dfbf4d6a2acf2c900ce3d63b5d876b202d38573f8ba93a59bd7611c7c7ae250d64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610743578063eb8d244414610780578063f2fde38b146107ab578063f3fef3a3146107d4576101e3565b8063a22cb46514610677578063b88d4fde146106a0578063bc07e867146106c9578063c87b56dd14610706576101e3565b80638ee7f6cb116100d15780638ee7f6cb14610595578063929a79b1146105d257806395d89b411461060f578063969cb7c31461063a576101e3565b8063715018a6146104d95780637bf212f8146104f057806380eeba071461052d5780638da5cb5b1461056a576101e3565b806334918dfd1161017a5780634f6ccce7116101495780634f6ccce7146103f75780636352211e146104345780636817c76c1461047157806370a082311461049c576101e3565b806334918dfd1461038457806342842e0e1461039b578063434f48c4146103c45780634e71d92d146103ed576101e3565b80630fd89c87116101b65780630fd89c87146102b657806318160ddd146102f357806323b872dd1461031e5780632f745c5914610347576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190614271565b6107fd565b60405161021c9190614ca6565b60405180910390f35b34801561023157600080fd5b5061023a610877565b6040516102479190614cc1565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906142c3565b610909565b6040516102849190614c3f565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190614235565b61098e565b005b3480156102c257600080fd5b506102dd60048036038101906102d891906142c3565b610aa6565b6040516102ea9190614cc1565b60405180910390f35b3480156102ff57600080fd5b50610308610c11565b6040516103159190614fc3565b60405180910390f35b34801561032a57600080fd5b506103456004803603810190610340919061412f565b610c1e565b005b34801561035357600080fd5b5061036e60048036038101906103699190614235565b610c7e565b60405161037b9190614fc3565b60405180910390f35b34801561039057600080fd5b50610399610d23565b005b3480156103a757600080fd5b506103c260048036038101906103bd919061412f565b610dcb565b005b3480156103d057600080fd5b506103eb60048036038101906103e691906142c3565b610deb565b005b6103f5610f23565b005b34801561040357600080fd5b5061041e600480360381019061041991906142c3565b61102d565b60405161042b9190614fc3565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906142c3565b6110c4565b6040516104689190614c3f565b60405180910390f35b34801561047d57600080fd5b50610486611176565b6040516104939190614fc3565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be91906140ca565b611181565b6040516104d09190614fc3565b60405180910390f35b3480156104e557600080fd5b506104ee611239565b005b3480156104fc57600080fd5b50610517600480360381019061051291906142c3565b6112c1565b6040516105249190614cc1565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f91906142c3565b61142c565b6040516105619190614cc1565b60405180910390f35b34801561057657600080fd5b5061057f611754565b60405161058c9190614c3f565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b791906142c3565b61177e565b6040516105c99190614cc1565b60405180910390f35b3480156105de57600080fd5b506105f960048036038101906105f491906142c3565b6118e9565b6040516106069190614cc1565b60405180910390f35b34801561061b57600080fd5b506106246120ac565b6040516106319190614cc1565b60405180910390f35b34801561064657600080fd5b50610661600480360381019061065c91906142c3565b61213e565b60405161066e9190614fc3565b60405180910390f35b34801561068357600080fd5b5061069e600480360381019061069991906141f9565b6121bb565b005b3480156106ac57600080fd5b506106c760048036038101906106c2919061417e565b61233c565b005b3480156106d557600080fd5b506106f060048036038101906106eb91906142c3565b61239e565b6040516106fd9190614fc3565b60405180910390f35b34801561071257600080fd5b5061072d600480360381019061072891906142c3565b6123f3565b60405161073a9190614cc1565b60405180910390f35b34801561074f57600080fd5b5061076a600480360381019061076591906140f3565b6124d9565b6040516107779190614ca6565b60405180910390f35b34801561078c57600080fd5b5061079561256d565b6040516107a29190614ca6565b60405180910390f35b3480156107b757600080fd5b506107d260048036038101906107cd91906140ca565b612580565b005b3480156107e057600080fd5b506107fb60048036038101906107f69190614235565b612678565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610870575061086f826127ee565b5b9050919050565b606060008054610886906152b8565b80601f01602080910402602001604051908101604052809291908181526020018280546108b2906152b8565b80156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b5050505050905090565b6000610914826128d0565b610953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094a90614ec3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610999826110c4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0190614f43565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a2961293c565b73ffffffffffffffffffffffffffffffffffffffff161480610a585750610a5781610a5261293c565b6124d9565b5b610a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8e90614e23565b60405180910390fd5b610aa18383612944565b505050565b6060610c0a826040518060400160405280600581526020017f434f4c4f520000000000000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b82821015610bb0578382906000526020600020018054610b23906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4f906152b8565b8015610b9c5780601f10610b7157610100808354040283529160200191610b9c565b820191906000526020600020905b815481529060010190602001808311610b7f57829003601f168201915b505050505081526020019060010190610b04565b505050506015805480602002602001604051908101604052809291908181526020018280548015610c0057602002820191906000526020600020905b815481526020019060010190808311610bec575b50505050506129fd565b9050919050565b6000600880549050905090565b610c2f610c2961293c565b82612b21565b610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590614f63565b60405180910390fd5b610c79838383612bff565b505050565b6000610c8983611181565b8210610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190614ce3565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d2b61293c565b73ffffffffffffffffffffffffffffffffffffffff16610d49611754565b73ffffffffffffffffffffffffffffffffffffffff1614610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690614ee3565b60405180910390fd5b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b610de68383836040518060200160405280600081525061233c565b505050565b6002600a541415610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890614fa3565b60405180910390fd5b6002600a81905550610e4161293c565b73ffffffffffffffffffffffffffffffffffffffff16610e5f611754565b73ffffffffffffffffffffffffffffffffffffffff1614610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac90614ee3565b60405180910390fd5b61119481118015610ec857506111f88111155b610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe90614f03565b60405180910390fd5b610f18610f12611754565b82612e5b565b6001600a8190555050565b600b60149054906101000a900460ff16610f72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6990614dc3565b60405180910390fd5b6000610f7e600c612e79565b9050346658d15e176280001115610fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc190614de3565b60405180910390fd5b61119481111561100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690614d63565b60405180910390fd5b61102061101a61293c565b82612e5b565b61102a600c6127d8565b50565b6000611037610c11565b8210611078576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106f90614f83565b60405180910390fd5b600882815481106110b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561116d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116490614e83565b60405180910390fd5b80915050919050565b6658d15e1762800081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e990614e63565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61124161293c565b73ffffffffffffffffffffffffffffffffffffffff1661125f611754565b73ffffffffffffffffffffffffffffffffffffffff16146112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90614ee3565b60405180910390fd5b6112bf6000612e87565b565b6060611425826040518060400160405280600981526020017f434f4e444954494f4e00000000000000000000000000000000000000000000008152506011805480602002602001604051908101604052809291908181526020016000905b828210156113cb57838290600052602060002001805461133e906152b8565b80601f016020809104026020016040519081016040528092919081815260200182805461136a906152b8565b80156113b75780601f1061138c576101008083540402835291602001916113b7565b820191906000526020600020905b81548152906001019060200180831161139a57829003601f168201915b50505050508152602001906001019061131f565b50505050601480548060200260200160405190810160405280929190818152602001828054801561141b57602002820191906000526020600020905b815481526020019060010190808311611407575b50505050506129fd565b9050919050565b60606003600f611471846040518060400160405280600b81526020017f5350494e45524152495459000000000000000000000000000000000000000000815250612f4d565b61147b9190615364565b10156115ea576115e3826040518060400160405280600a81526020017f5350494e45434f4c4f52000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b828210156115895783829060005260206000200180546114fc906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611528906152b8565b80156115755780601f1061154a57610100808354040283529160200191611575565b820191906000526020600020905b81548152906001019060200180831161155857829003601f168201915b5050505050815260200190600101906114dd565b5050505060158054806020026020016040519081016040528092919081815260200182805480156115d957602002820191906000526020600020905b8154815260200190600101908083116115c5575b50505050506129fd565b905061174f565b61174c826040518060400160405280600581526020017f434f4c4f520000000000000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b828210156116f2578382906000526020600020018054611665906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611691906152b8565b80156116de5780601f106116b3576101008083540402835291602001916116de565b820191906000526020600020905b8154815290600101906020018083116116c157829003601f168201915b505050505081526020019060010190611646565b50505050601580548060200260200160405190810160405280929190818152602001828054801561174257602002820191906000526020600020905b81548152602001906001019080831161172e575b50505050506129fd565b90505b919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606118e2826040518060400160405280600681526020017f464f524d415400000000000000000000000000000000000000000000000000008152506010805480602002602001604051908101604052809291908181526020016000905b828210156118885783829060005260206000200180546117fb906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611827906152b8565b80156118745780601f1061184957610100808354040283529160200191611874565b820191906000526020600020905b81548152906001019060200180831161185757829003601f168201915b5050505050815260200190600101906117dc565b5050505060138054806020026020016040519081016040528092919081815260200182805480156118d857602002820191906000526020600020905b8154815260200190600101908083116118c4575b50505050506129fd565b9050919050565b6060600061192c836040518060400160405280600581526020017f5449544c45000000000000000000000000000000000000000000000000000000815250612f4d565b9050600060048261193d9190615364565b90506000600e808054905060038561195591906150d8565b61195f9190615364565b81548110611996577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200180546119ab906152b8565b80601f01602080910402602001604051908101604052809291908181526020018280546119d7906152b8565b8015611a245780601f106119f957610100808354040283529160200191611a24565b820191906000526020600020905b815481529060010190602001808311611a0757829003601f168201915b505050505090506000600d8080549050600586611a4191906150d8565b611a4b9190615364565b81548110611a82577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018054611a97906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac3906152b8565b8015611b105780601f10611ae557610100808354040283529160200191611b10565b820191906000526020600020905b815481529060010190602001808311611af357829003601f168201915b505050505090506000806002600787611b2991906150d8565b611b339190615364565b1415611b4e5760405180602001604052806000815250611b85565b6040518060400160405280600481526020017f54686520000000000000000000000000000000000000000000000000000000008152505b90506000600e8080549050600988611b9d91906150d8565b611ba79190615364565b81548110611bde577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018054611bf3906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f906152b8565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b505050505090506000600d8080549050600b89611c8991906150d8565b611c939190615364565b81548110611cca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018054611cdf906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0b906152b8565b8015611d585780601f10611d2d57610100808354040283529160200191611d58565b820191906000526020600020905b815481529060010190602001808311611d3b57829003601f168201915b505050505090506000806002600d8a611d7191906150d8565b611d7b9190615364565b1415611d965760405180602001604052806000815250611dcd565b6040518060400160405280600481526020017f74686520000000000000000000000000000000000000000000000000000000008152505b90506000600f8080549050600f8b611de591906150d8565b611def9190615364565b81548110611e26577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018054611e3b906152b8565b80601f0160208091040260200160405190810160405280929190818152602001828054611e67906152b8565b8015611eb45780601f10611e8957610100808354040283529160200191611eb4565b820191906000526020600020905b815481529060010190602001808311611e9757829003601f168201915b50505050509050600080600260118c611ecd91906150d8565b611ed79190615364565b1415611f18576040518060400160405280600281526020017f6f66000000000000000000000000000000000000000000000000000000000000815250611f4f565b6040518060400160405280600381526020017f616e6400000000000000000000000000000000000000000000000000000000008152505b90506002891015611fad5760018914611f775760405180602001604052806000815250611f79565b855b8888604051602001611f8d93929190614a27565b6040516020818303038152906040529a50505050505050505050506120a7565b60006002601a8c611fbe91906150d8565b611fc89190615364565b1415611fe35760405180602001604052806000815250612004565b87604051602001611ff49190614ab5565b6040516020818303038152906040525b97506000600260068c61201791906150d8565b6120219190615364565b141561203c576040518060200160405280600081525061205d565b8460405160200161204d9190614ab5565b6040516020818303038152906040525b945085888860028c146120705783612072565b845b86898960405160200161208b97969594939291906149ac565b6040516020818303038152906040529a50505050505050505050505b919050565b6060600180546120bb906152b8565b80601f01602080910402602001604051908101604052809291908181526020018280546120e7906152b8565b80156121345780601f1061210957610100808354040283529160200191612134565b820191906000526020600020905b81548152906001019060200180831161211757829003601f168201915b5050505050905090565b6000806064612182846040518060400160405280600981526020017f5055424c49534845520000000000000000000000000000000000000000000000815250612f4d565b61218c9190615364565b905080600f116121ad57806033116121a55760036121a8565b60025b6121b0565b60015b60ff16915050919050565b6121c361293c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612231576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222890614da3565b60405180910390fd5b806005600061223e61293c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122eb61293c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516123309190614ca6565b60405180910390a35050565b61234d61234761293c565b83612b21565b61238c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238390614f63565b60405180910390fd5b61239884848484612f8b565b50505050565b60006101f56123e2836040518060400160405280600581526020017f5041474553000000000000000000000000000000000000000000000000000000815250612f4d565b6123ec9190615364565b9050919050565b6060600061240083610aa6565b6124098461142c565b61241285612fe7565b61241b866132bc565b6124248761177e565b6124356124308961239e565b6132bc565b61243e896112c1565b6124478a613469565b60405160200161245e989796959493929190614b3e565b604051602081830303815290604052905060006124ab61247d856132bc565b612486846134e7565b604051602001612497929190614ad7565b6040516020818303038152906040526134e7565b9050806040516020016124be9190614b1c565b60405160208183030381529060405291508192505050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60149054906101000a900460ff1681565b61258861293c565b73ffffffffffffffffffffffffffffffffffffffff166125a6611754565b73ffffffffffffffffffffffffffffffffffffffff16146125fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125f390614ee3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561266c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266390614d23565b60405180910390fd5b61267581612e87565b50565b6002600a5414156126be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b590614fa3565b60405180910390fd5b6002600a819055506126ce61293c565b73ffffffffffffffffffffffffffffffffffffffff166126ec611754565b73ffffffffffffffffffffffffffffffffffffffff1614612742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273990614ee3565b60405180910390fd5b47811115612785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277c90614e43565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156127cb573d6000803e3d6000fd5b506001600a819055505050565b6001816000016000828254019250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128b957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806128c957506128c8826136a5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166129b7836110c4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606060008260018451612a109190615163565b81518110612a47577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612a598787612f4d565b612a639190615364565b905060005b8351811015612b165781848281518110612aab577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101511115612b0357848181518110612af2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015192505050612b19565b8080612b0e9061531b565b915050612a68565b50505b949350505050565b6000612b2c826128d0565b612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6290614e03565b60405180910390fd5b6000612b76836110c4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612be557508373ffffffffffffffffffffffffffffffffffffffff16612bcd84610909565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bf65750612bf581856124d9565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c1f826110c4565b73ffffffffffffffffffffffffffffffffffffffff1614612c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6c90614f23565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdc90614d83565b60405180910390fd5b612cf083838361370f565b612cfb600082612944565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d4b9190615163565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612da29190615082565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612e75828260405180602001604052806000815250613823565b5050565b600081600001549050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081612f59846132bc565b604051602001612f6a929190614988565b6040516020818303038152906040528051906020012060001c905092915050565b612f96848484612bff565b612fa28484848461387e565b612fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd890614d03565b60405180910390fd5b50505050565b6060806000612ff5846118e9565b90506000604e90506000806000600d90505b6001156132ae57808361301a9190615082565b91508451821061302d57845191506130db565b5b7f2000000000000000000000000000000000000000000000000000000000000000858381518110613088577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b7effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916141580156130c257508282115b156130da5781806130d29061528e565b92505061302e565b5b600083836130e99190615163565b67ffffffffffffffff811115613128577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561315a5781602001600182028036833780820191505090505b50905060008490505b8381101561323d576131b78782815181106131a7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602001015160f81c60f81b613a15565b8286836131c49190615163565b815181106131fb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535080806132359061531b565b915050613163565b5086613248866132bc565b8260405160200161325b93929190614a63565b604051602081830303815290604052965061012c85111561327c57506132ae565b6026856132899190615082565b94508551831061329957506132ae565b6001836132a69190615082565b935050613007565b859650505050505050919050565b60606000821415613304576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613464565b600082905060005b6000821461333657808061331f9061531b565b915050600a8261332f91906150d8565b915061330c565b60008167ffffffffffffffff811115613378577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156133aa5781602001600182028036833780820191505090505b5090505b6000851461345d576001826133c39190615163565b9150600a856133d29190615364565b60306133de9190615082565b60f81b81838151811061341a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561345691906150d8565b94506133ae565b8093505050505b919050565b606060006134768361213e565b9050600181146134c557600281146134a657604051806060016040528060228152602001615ee0602291396134c0565b6040518060600160405280602e8152602001615f6b602e91395b6134df565b604051806060016040528060298152602001615f42602991395b915050919050565b6060600082519050600081141561351057604051806020016040528060008152509150506136a0565b600060036002836135219190615082565b61352b91906150d8565b60046135379190615109565b905060006020826135489190615082565b67ffffffffffffffff811115613587577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135b95781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001615f02604091399050600181016020830160005b8681101561365d5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b905080845260048401935050506135e4565b506003860660018114613677576002811461368757613692565b613d3d60f01b6002830352613692565b603d60f81b60018303525b508484525050819450505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61371a838383613a9b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561375d5761375881613aa0565b61379c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461379b5761379a8382613ae9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156137df576137da81613c56565b61381e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461381d5761381c8282613d99565b5b5b505050565b61382d8383613e18565b61383a600084848461387e565b613879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387090614d03565b60405180910390fd5b505050565b600061389f8473ffffffffffffffffffffffffffffffffffffffff16613fe6565b15613a08578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026138c861293c565b8786866040518563ffffffff1660e01b81526004016138ea9493929190614c5a565b602060405180830381600087803b15801561390457600080fd5b505af192505050801561393557506040513d601f19601f82011682018060405250810190613932919061429a565b60015b6139b8573d8060008114613965576040519150601f19603f3d011682016040523d82523d6000602084013e61396a565b606091505b506000815114156139b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139a790614d03565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a0d565b600190505b949350505050565b6000606160f81b827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191610158015613a735750607a60f81b827effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff191611155b15613a925760208260f81c613a889190615197565b60f81b9050613a96565b8190505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001613af684611181565b613b009190615163565b9050600060076000848152602001908152602001600020549050818114613be5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613c6a9190615163565b9050600060096000848152602001908152602001600020549050600060088381548110613cc0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110613d08577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613d7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613da483611181565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613e7f90614ea3565b60405180910390fd5b613e91816128d0565b15613ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ec890614d43565b60405180910390fd5b613edd6000838361370f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613f2d9190615082565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b600061400c61400784615003565b614fde565b90508281526020810184848401111561402457600080fd5b61402f84828561524c565b509392505050565b60008135905061404681615e83565b92915050565b60008135905061405b81615e9a565b92915050565b60008135905061407081615eb1565b92915050565b60008151905061408581615eb1565b92915050565b600082601f83011261409c57600080fd5b81356140ac848260208601613ff9565b91505092915050565b6000813590506140c481615ec8565b92915050565b6000602082840312156140dc57600080fd5b60006140ea84828501614037565b91505092915050565b6000806040838503121561410657600080fd5b600061411485828601614037565b925050602061412585828601614037565b9150509250929050565b60008060006060848603121561414457600080fd5b600061415286828701614037565b935050602061416386828701614037565b9250506040614174868287016140b5565b9150509250925092565b6000806000806080858703121561419457600080fd5b60006141a287828801614037565b94505060206141b387828801614037565b93505060406141c4878288016140b5565b925050606085013567ffffffffffffffff8111156141e157600080fd5b6141ed8782880161408b565b91505092959194509250565b6000806040838503121561420c57600080fd5b600061421a85828601614037565b925050602061422b8582860161404c565b9150509250929050565b6000806040838503121561424857600080fd5b600061425685828601614037565b9250506020614267858286016140b5565b9150509250929050565b60006020828403121561428357600080fd5b600061429184828501614061565b91505092915050565b6000602082840312156142ac57600080fd5b60006142ba84828501614076565b91505092915050565b6000602082840312156142d557600080fd5b60006142e3848285016140b5565b91505092915050565b6142f5816151cb565b82525050565b614304816151dd565b82525050565b600061431582615034565b61431f818561504a565b935061432f81856020860161525b565b61433881615451565b840191505092915050565b600061434e82615034565b614358818561505b565b935061436881856020860161525b565b80840191505092915050565b600061437f8261503f565b6143898185615066565b935061439981856020860161525b565b6143a281615451565b840191505092915050565b60006143b88261503f565b6143c28185615077565b93506143d281856020860161525b565b80840191505092915050565b60006143eb605483615077565b91506143f682615462565b605482019050919050565b600061440e600b83615077565b9150614419826154d7565b600b82019050919050565b6000614431602b83615066565b915061443c82615500565b604082019050919050565b6000614454603283615066565b915061445f8261554f565b604082019050919050565b6000614477601683615077565b91506144828261559e565b601682019050919050565b600061449a602683615066565b91506144a5826155c7565b604082019050919050565b60006144bd601c83615066565b91506144c882615616565b602082019050919050565b60006144e0608b83615077565b91506144eb8261563f565b608b82019050919050565b6000614503601183615077565b915061450e82615700565b601182019050919050565b6000614526601383615066565b915061453182615729565b602082019050919050565b6000614549602483615066565b915061455482615752565b604082019050919050565b600061456c601983615066565b9150614577826157a1565b602082019050919050565b600061458f601283615066565b915061459a826157ca565b602082019050919050565b60006145b2601f83615066565b91506145bd826157f3565b602082019050919050565b60006145d5602c83615066565b91506145e08261581c565b604082019050919050565b60006145f8601083615077565b91506146038261586b565b601082019050919050565b600061461b600183615077565b915061462682615894565b600182019050919050565b600061463e603883615066565b9150614649826158bd565b604082019050919050565b6000614661600f83615066565b915061466c8261590c565b602082019050919050565b6000614684602a83615066565b915061468f82615935565b604082019050919050565b60006146a7602983615066565b91506146b282615984565b604082019050919050565b60006146ca600283615077565b91506146d5826159d3565b600282019050919050565b60006146ed600783615077565b91506146f8826159fc565b600782019050919050565b6000614710602083615066565b915061471b82615a25565b602082019050919050565b6000614733602c83615066565b915061473e82615a4e565b604082019050919050565b6000614756602083615066565b915061476182615a9d565b602082019050919050565b6000614779601083615066565b915061478482615ac6565b602082019050919050565b600061479c602983615066565b91506147a782615aef565b604082019050919050565b60006147bf603b83615077565b91506147ca82615b3e565b603b82019050919050565b60006147e2602183615066565b91506147ed82615b8d565b604082019050919050565b6000614805600283615077565b915061481082615bdc565b600282019050919050565b6000614828601d83615077565b915061483382615c05565b601d82019050919050565b600061484b603d83615077565b915061485682615c2e565b603d82019050919050565b600061486e603183615066565b915061487982615c7d565b604082019050919050565b6000614891602c83615066565b915061489c82615ccc565b604082019050919050565b60006148b4600283615077565b91506148bf82615d1b565b600282019050919050565b60006148d7601283615077565b91506148e282615d44565b601282019050919050565b60006148fa601f83615066565b915061490582615d6d565b602082019050919050565b600061491d605f83615077565b915061492882615d96565b605f82019050919050565b6000614940600683615077565b915061494b82615e0b565b600682019050919050565b6000614963603283615077565b915061496e82615e34565b603282019050919050565b61498281615235565b82525050565b600061499482856143ad565b91506149a082846143ad565b91508190509392505050565b60006149b8828a6143ad565b91506149c482896143ad565b91506149d082886143ad565b91506149db8261460e565b91506149e782876143ad565b91506149f28261460e565b91506149fe82866143ad565b9150614a0a82856143ad565b9150614a1682846143ad565b915081905098975050505050505050565b6000614a3382866143ad565b9150614a3f82856143ad565b9150614a4a8261460e565b9150614a5682846143ad565b9150819050949350505050565b6000614a6f82866143ad565b9150614a7a826144f6565b9150614a8682856143ad565b9150614a91826148a7565b9150614a9d8284614343565b9150614aa8826146e0565b9150819050949350505050565b6000614ac182846143ad565b9150614acc8261460e565b915081905092915050565b6000614ae2826145eb565b9150614aee82856143ad565b9150614af9826144d3565b9150614b0582846143ad565b9150614b10826146bd565b91508190509392505050565b6000614b278261481b565b9150614b3382846143ad565b915081905092915050565b6000614b4982614910565b9150614b54826147b2565b9150614b60828b6143ad565b9150614b6b826148ca565b9150614b7682614956565b9150614b82828a6143ad565b9150614b8d826148ca565b9150614b988261483e565b9150614ba482896143ad565b9150614baf8261446a565b9150614bbb82886143ad565b9150614bc682614401565b9150614bd1826143de565b9150614bdd82876143ad565b9150614be8826147f8565b9150614bf482866143ad565b9150614bff826147f8565b9150614c0b82856143ad565b9150614c16826146e0565b9150614c2282846143ad565b9150614c2d82614933565b91508190509998505050505050505050565b6000602082019050614c5460008301846142ec565b92915050565b6000608082019050614c6f60008301876142ec565b614c7c60208301866142ec565b614c896040830185614979565b8181036060830152614c9b818461430a565b905095945050505050565b6000602082019050614cbb60008301846142fb565b92915050565b60006020820190508181036000830152614cdb8184614374565b905092915050565b60006020820190508181036000830152614cfc81614424565b9050919050565b60006020820190508181036000830152614d1c81614447565b9050919050565b60006020820190508181036000830152614d3c8161448d565b9050919050565b60006020820190508181036000830152614d5c816144b0565b9050919050565b60006020820190508181036000830152614d7c81614519565b9050919050565b60006020820190508181036000830152614d9c8161453c565b9050919050565b60006020820190508181036000830152614dbc8161455f565b9050919050565b60006020820190508181036000830152614ddc81614582565b9050919050565b60006020820190508181036000830152614dfc816145a5565b9050919050565b60006020820190508181036000830152614e1c816145c8565b9050919050565b60006020820190508181036000830152614e3c81614631565b9050919050565b60006020820190508181036000830152614e5c81614654565b9050919050565b60006020820190508181036000830152614e7c81614677565b9050919050565b60006020820190508181036000830152614e9c8161469a565b9050919050565b60006020820190508181036000830152614ebc81614703565b9050919050565b60006020820190508181036000830152614edc81614726565b9050919050565b60006020820190508181036000830152614efc81614749565b9050919050565b60006020820190508181036000830152614f1c8161476c565b9050919050565b60006020820190508181036000830152614f3c8161478f565b9050919050565b60006020820190508181036000830152614f5c816147d5565b9050919050565b60006020820190508181036000830152614f7c81614861565b9050919050565b60006020820190508181036000830152614f9c81614884565b9050919050565b60006020820190508181036000830152614fbc816148ed565b9050919050565b6000602082019050614fd86000830184614979565b92915050565b6000614fe8614ff9565b9050614ff482826152ea565b919050565b6000604051905090565b600067ffffffffffffffff82111561501e5761501d615422565b5b61502782615451565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061508d82615235565b915061509883615235565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156150cd576150cc615395565b5b828201905092915050565b60006150e382615235565b91506150ee83615235565b9250826150fe576150fd6153c4565b5b828204905092915050565b600061511482615235565b915061511f83615235565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561515857615157615395565b5b828202905092915050565b600061516e82615235565b915061517983615235565b92508282101561518c5761518b615395565b5b828203905092915050565b60006151a28261523f565b91506151ad8361523f565b9250828210156151c0576151bf615395565b5b828203905092915050565b60006151d682615215565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561527957808201518184015260208101905061525e565b83811115615288576000848401525b50505050565b600061529982615235565b915060008214156152ad576152ac615395565b5b600182039050919050565b600060028204905060018216806152d057607f821691505b602082108114156152e4576152e36153f3565b5b50919050565b6152f382615451565b810181811067ffffffffffffffff8211171561531257615311615422565b5b80604052505050565b600061532682615235565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561535957615358615395565b5b600182019050919050565b600061536f82615235565b915061537a83615235565b92508261538a576153896153c4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f3c74657874207472616e73666f726d3d22726f7461746528393029207472616e60008201527f736c617465283530202d3435292220666f6e742d66616d696c793d227365726960208201527f662220666f6e742d73697a653d2231367078223e000000000000000000000000604082015250565b7f3c2f746578743e3c2f673e000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f3c7465787420783d223237352220793d22343530223e00000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f222c20226465736372697074696f6e223a2022566172696f757320426f6f6b7360008201527f206973206120636f6c6c656374696f6e206f662073706563756c61746976652060208201527f626f6f6b732067656e65726174656420616e642073746f726564206f6e20636860408201527f61696e2e222c2022696d616765223a2022646174613a696d6167652f7376672b60608201527f786d6c3b6261736536342c000000000000000000000000000000000000000000608082015250565b7f3c7465787420783d223237352220793d22000000000000000000000000000000600082015250565b7f546f6b656e206c696d6974207265616368656400000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f53616c65206973206e6f74206163746976650000000000000000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a2022426f6f6b202300000000000000000000000000000000600082015250565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f416d6f756e7420746f6f20686967680000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f3c2f746578743e00000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f3c726563742077696474683d2234353022206865696768743d2234353022207860008201527f3d2232352220793d223235222072783d223235222066696c6c3d220000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f2c20000000000000000000000000000000000000000000000000000000000000600082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f3c6720666f6e742d66616d696c793d2273657269662220666f6e742d73697a6560008201527f3d22333870782220746578742d616e63686f723d226d6964646c65223e000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f223e000000000000000000000000000000000000000000000000000000000000600082015250565b7f22207374726f6b653d222330303022202f3e0000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323060008201527f30302f737667222076696577426f783d223020302035303020353030223e3c7260208201527f6563742077696474683d2235303022206865696768743d2235303022202f3e00604082015250565b7f3c2f7376673e0000000000000000000000000000000000000000000000000000600082015250565b7f3c726563742077696474683d22353022206865696768743d223435302220783d60008201527f2232352220793d223235222066696c6c3d220000000000000000000000000000602082015250565b615e8c816151cb565b8114615e9757600080fd5b50565b615ea3816151dd565b8114615eae57600080fd5b50565b615eba816151e9565b8114615ec557600080fd5b50565b615ed181615235565b8114615edc57600080fd5b5056fe3c636972636c6520723d223130222063783d223530222063793d2234343022202f3e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c706f6c79676f6e20706f696e74733d2235302c3433302036302c3435302034302c34353022202f3e3c726563742077696474683d22323022206865696768743d2232302220783d2234302220793d2234333022202f3ea2646970667358221220dfbf4d6a2acf2c900ce3d63b5d876b202d38573f8ba93a59bd7611c7c7ae250d64736f6c63430008040033

Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.