ETH Price: $2,352.88 (+0.64%)

Token

 

Overview

Max Total Supply

0

Holders

111

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cryptobits.eth
Balance
2
0xd26b9a32606b276413c7eb68e0b236e882cae0f3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BYOT

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 13: BYOT.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";
import "./ownable.sol";
import "./Strings.sol";
import "./SafeMath.sol";
import "./ReEntrancyGuard.sol";
import "./Base64.sol";


contract BYOT is Context, ERC165, IERC721, Ownable, ReentrancyGuard {

    using SafeMath for uint256;
    using Address for address;


    // 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;

        uint256 numFreeMinted = 0;
        uint256 numPurchased = 0;
        uint256 totalSupply = 2500;
        uint256 freeSupply = 500;


         // Mapping from token ID to owner address
        mapping(address => uint256) public mintCredits;

        uint MINT_PRICE = .04 ether; 

  
    
    string[] private hourNums = [
        "1","2","3","4","5","6","7","8","9","10","11","12"
    ];
    
    // 0 AM 1 PM
    uint[] private timeSuffixes = [
        0, 1
    ];
    
    string[] private months = [
        "January", "February", "March", "April", "May", "June",
"July", "August", "September", "October", "November", "December"
    ];
    
    string[] private activities = [
        "Crying","Buying the dip","Panic selling","Buying high, selling low",
        "Watching Jack Dorsey and a16z roast each other","Hodling",
    "Selling all my fiat","Thinking about moving to Miami",
    "Getting rekt","Keeping up with the Kardashians",
    "Changing my pfp","Channeling Pete Davidson energy",
    "Petting Doge", "Serenading the Queen of England",
    "Simping to Drake songs","Figuring out what's in Subway's tuna sandwich",
    "Eating a big ass can of beans","Giving Satan a lap dance",
    "Hitting a blunt with Joe Rogan","Getting into a Twitter fight over Chik-fil-a vs. Popeyes",
    "Getting a pedicure with Elizabeth Warren","On a first date",
    "Buying the constitution","Throwing up on Ken Griffin's shirt",
    "Quitting my job", "Arguing with a Bitcoin maxi",
    "Getting a colonoscopy", "Arm wrestling The Rock", "Shitposting", "Waiting on gas fees to go down",
    "Raising a $100M seed round","Getting wasted"

    ];
    
    string[] private outfits = [
        "My birthday suit", "A Spiderman costume",
        "Socks and sandals", "Crocs",
        "Harry Potter's invisibility cloak",
        "Steve Job's turtleneck", "A grey Patagonia vest",
        "An Oculus headset","Hella sunscreen",
        "Yeezys","Dora's backpack","Bernie Sander's mittens",
        "Timberland boots","A panda onesie","Wolf of Wall Street's suit",
        "A Supreme Hoodie","A Speedo", "Jake from State Farm's sweater",
        "A Gucci belt", "A Ski mask"
    ];
    
    string[] private locations = [
        "On the moon","At karaoke with Voldemort","In the metaverse",
        "On the toilet", "At Olive Garden","In a Prius with Elon Musk",
        "In a pineapple under the sea","In my parents' basement",
        "In Snoop Dogg's mansion","At the SEC Chairman's house",
        "In Scooby Doo's van","On stage at a comedy club",
        "On the subway","In line at TSA","On Lil Yachty's Yacht",
        "At the Grammys","At the Crypto.com Arena","At Times Square",
        "In a billionaire's spaceship","At a funeral home",
        "At a nursing home's Bingo Night","At a Justin Bieber concert",
        "In the 4th dimension","In a Geico commercial"
    ];

    string[] private rarities = [
        "Leap Year", "End of the World",
        "420 B.C.", "42069 A.D.", "1787", "The Big Bang"
    ];
    
    

   

  
  // ERC 721


   /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = BYOT.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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: 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 = BYOT.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 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(BYOT.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(BYOT.ownerOf(tokenId), to, tokenId);
    }

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

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


 /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).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;
    }






  /////////////////////

//// BYOT /////////////

  //////////////////////
    
    function random(string memory input) internal pure returns (uint256) {
        return uint256(keccak256(abi.encodePacked(input)));
    }
    
    function getMinutes(uint256 tokenId) public pure returns (string memory) {
        uint256 rand = random(string(abi.encodePacked("MINUTES", toString(tokenId))));
        uint256 minutesNum = rand % 60;
        if(minutesNum >= 10){
            return string(abi.encodePacked("",toString(minutesNum)));
        }
            return string(abi.encodePacked("0",toString(minutesNum)));
    }

    function getHourNum(uint256 tokenId) internal view returns (uint256) {
        uint256 rand = random(string(abi.encodePacked("HOURS", toString(tokenId))));
        uint256 index = rand % hourNums.length;
        return index;
    }
    
    function getHours(uint256 tokenId) public view returns (string memory) {
        uint256 index = getHourNum(tokenId);
        string memory output = hourNums[index];
        return output;
    }
    
    function getTimeSuffixNum(uint256 tokenId) public view returns (uint){
        uint256 rand = random(string(abi.encodePacked("SUFFIX", toString(tokenId))));
        uint suffix = timeSuffixes[rand % timeSuffixes.length];
        return suffix;
    }

    function getTimeSuffix(uint256 tokenId) public view returns (string memory) {
        uint suffix = getTimeSuffixNum(tokenId);
        if(suffix == 0){
            return "AM";
        }
        return "PM";
    }
    
    function getMonth(uint256 tokenId) public view returns (string memory) {
        return getTrait(tokenId, "MONTH", months);
    }

    function getActivity(uint256 tokenId) public view returns (string memory) {
         return getTrait(tokenId, "ACTIVITY", activities);
    }
    
    function getOutfit(uint256 tokenId) public view returns (string memory) {
        return getTrait(tokenId, "OUTFIT", outfits);
    }
    
    function getLocation(uint256 tokenId) public view returns (string memory) {
        return getTrait(tokenId, "LOCATION", locations);
    }
    
  
    function getTrait(uint256 tokenId, string memory keyPrefix, string[] memory sourceArray) internal pure returns(string memory){
        uint256 rand = random(string(abi.encodePacked(keyPrefix, toString(tokenId))));
        string memory output = sourceArray[rand % sourceArray.length];
        return output;
    }

    function getTimeOfDay(uint256 tokenId) public view returns(string memory) {
        uint256 hourIndex  = getHourNum(tokenId); // index
        uint timeSuffix = getTimeSuffixNum(tokenId);
        // 5 - 12pm -- morning 12 - 7pm ge  -- otherwise night
        if(hourIndex >= 4 && hourIndex < 11 && timeSuffix == 0){
            return "gm";
        } else if((hourIndex == 11 || (hourIndex >=0 && hourIndex < 6)) && timeSuffix == 1){
            return "ge";
        } 
        return "gn";

    }

    function getTime(uint256 tokenId) public view returns(string memory) {
        string memory hour = getHours(tokenId);
        string memory minute = getMinutes(tokenId);
        return string(abi.encodePacked(hour,":",minute));
    }

    function getRarity(uint256 tokenId) internal pure returns(uint256){
        uint256 rand = random(string(abi.encodePacked("RARITY", toString(tokenId))));
        uint256 rarity = rand % 120;
        if(rarity >= 114){
            return 1;
        }
        return 0;
    }

    function getRareTrait(uint256 tokenId) public view returns(string memory) {
        uint256 rarity = getRarity(tokenId);
        if(rarity == 0){
            return "common";
        } else{
            return getTrait(tokenId, "RARITY", rarities);
        }
    }
    

    function tokenURI(uint256 tokenId) public view returns (string memory) {
        string[17] memory parts;
        parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="black" /><text x="10" y="20" class="base">';

        parts[1] = getTimeOfDay(tokenId);

        parts[2] = '</text><text x="10" y="40" class="base">';

        parts[3] = getTime(tokenId);

        parts[4] = '</text><text x="10" y="60" class="base">';

        parts[5] = getTimeSuffix(tokenId);

        parts[6] = '</text><text x="10" y="80" class="base">';

        parts[7] = getMonth(tokenId);

        parts[8] = '</text><text x="10" y="100" class="base">';

        parts[9] = getActivity(tokenId);

        parts[10] = '</text><text x="10" y="120" class="base">';

        parts[11] = getOutfit(tokenId);

        parts[12] = '</text><text x="10" y="140" class="base">';

        parts[13] = getLocation(tokenId);

        parts[14] = '</text><text x="10" y="160" class="base">';

        uint256 rarity = getRarity(tokenId);

        parts[15] = getRareTrait(tokenId);

        parts[16] = '</text></svg>';

        string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8]));
        if(rarity == 0){
            output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[16]));
        } else{
            output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12], parts[13], parts[14],parts[15],parts[16]));
        }
       
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "BYOT #', toString(tokenId), '", "description": "Buy Your Own Time (BYOT) is a Loot spin-off from the team at The Infinity Collections. The project combines the concept of Loot with the entertaining, sharable quality of Mad Libs. Mint a BYOT and receive a bizarre scenario depicting what you are doing at a moment in time.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}'))));
        output = string(abi.encodePacked('data:application/json;base64,', json));

        return output;
    }

     // only owner can withdraw money deposited in the contract
      function withdraw() external onlyOwner returns(bool){
        address payable _owner = payable(msg.sender);
        _owner.transfer(address(this).balance);
        return true;
    }

    

    function mint(uint256 _toMint) public nonReentrant payable {
        require(_toMint <= 20, "Can only mint a max of 20");
        require(numPurchased.add(_toMint) <= totalSupply.sub(freeSupply), "Will exceed alloted supply");
        require(msg.value >= (_toMint * MINT_PRICE), "Not enough ether sent");
        for(uint256 i = 0; i < _toMint; i++){
             _safeMint(_msgSender(),numPurchased + freeSupply);
            numPurchased = numPurchased.add(1);
            mintCredits[msg.sender] = mintCredits[msg.sender] + 1;
        }
    }

    function freeMint(uint256 _toMint) public nonReentrant {
        require(_toMint <= 20, "Can only mint a max of 20");
        require(numFreeMinted.add(_toMint) <= freeSupply, "Will exceed alloted free supply");
        for(uint256 i = 0; i < _toMint; i++){
             _safeMint(_msgSender(),numFreeMinted);
            numFreeMinted = numFreeMinted.add(1);
            mintCredits[msg.sender] = mintCredits[msg.sender] + 1;
        }
    }

    function getMintCredits(address _owner) external view returns(uint256){
        return mintCredits[_owner];
    }

    function getNumFreeMinted() external view returns(uint256) {
        return numFreeMinted;
    }

    function getNumPurchased() external view returns(uint256) {
        return numPurchased;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        MINT_PRICE  = newPrice;
    }

    function setMaxMint(uint256 newMaxMint) public onlyOwner {
        totalSupply = newMaxMint;
    }
    
    
    function toString(uint256 value) internal pure returns (string memory) {
    // Inspired by OraclizeAPI's implementation - MIT license
    // 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);
    }
    
    
}



File 1 of 13: 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 2 of 13: Base64.sol
pragma solidity ^0.8.0;
/// [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 4 of 13: 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 5 of 13: 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 6 of 13: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./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 8 of 13: 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 9 of 13: Migrations.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract Migrations {
  address public owner = msg.sender;
  uint public last_completed_migration;

  modifier restricted() {
    require(
      msg.sender == owner,
      "This function is restricted to the contract's owner"
    );
    _;
  }

  function setCompleted(uint completed) public restricted {
    last_completed_migration = completed;
  }
}

File 10 of 13: ownable.sol
pragma solidity ^0.8.0;


/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address private _owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    _owner = msg.sender;
  }

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

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

  /**
   * @return true if `msg.sender` is the owner of the contract.
   */
  function isOwner() public view returns(bool) {
    return msg.sender == _owner;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(_owner);
    _owner = address(0);
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function transferOwnership(address newOwner) public onlyOwner {
    _transferOwnership(newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address newOwner) internal {
    require(newOwner != address(0));
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
}

File 11 of 13: 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 12 of 13: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 13 of 13: 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);
    }
}

Contract Security Audit

Contract ABI

[{"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"}],"name":"OwnershipRenounced","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":[{"internalType":"uint256","name":"_toMint","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getActivity","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getHours","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLocation","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getMintCredits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMinutes","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMonth","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumPurchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOutfit","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRareTrait","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTime","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTimeOfDay","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTimeSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTimeSuffixNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_toMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintCredits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

6080604052600060065560006007556109c46008556101f4600955668e1bc9bf040000600b556040518061018001604052806040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f320000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f330000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f340000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f350000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f360000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f370000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f380000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600181526020017f390000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f313000000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f313100000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600281526020017f3132000000000000000000000000000000000000000000000000000000000000815250815250600c90600c6200030592919062001923565b506040518060400160405280600060ff168152602001600160ff16815250600d906002620003359291906200198a565b506040518061018001604052806040518060400160405280600781526020017f4a616e756172790000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f466562727561727900000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f4d6172636800000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600581526020017f417072696c00000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600381526020017f4d6179000000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4a756e650000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f4a756c790000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f417567757374000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600981526020017f53657074656d626572000000000000000000000000000000000000000000000081525081526020016040518060400160405280600781526020017f4f63746f6265720000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f4e6f76656d62657200000000000000000000000000000000000000000000000081525081526020016040518060400160405280600881526020017f446563656d626572000000000000000000000000000000000000000000000000815250815250600e90600c6200061692919062001923565b506040518061040001604052806040518060400160405280600681526020017f437279696e67000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f427579696e67207468652064697000000000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f50616e69632073656c6c696e670000000000000000000000000000000000000081525081526020016040518060400160405280601881526020017f427579696e6720686967682c2073656c6c696e67206c6f77000000000000000081525081526020016040518060600160405280602e815260200162007308602e913981526020016040518060400160405280600781526020017f486f646c696e670000000000000000000000000000000000000000000000000081525081526020016040518060400160405280601381526020017f53656c6c696e6720616c6c206d7920666961740000000000000000000000000081525081526020016040518060400160405280601e81526020017f5468696e6b696e672061626f7574206d6f76696e6720746f204d69616d69000081525081526020016040518060400160405280600c81526020017f47657474696e672072656b74000000000000000000000000000000000000000081525081526020016040518060400160405280601f81526020017f4b656570696e67207570207769746820746865204b61726461736869616e730081525081526020016040518060400160405280600f81526020017f4368616e67696e67206d7920706670000000000000000000000000000000000081525081526020016040518060400160405280601f81526020017f4368616e6e656c696e672050657465204461766964736f6e20656e657267790081525081526020016040518060400160405280600c81526020017f50657474696e6720446f6765000000000000000000000000000000000000000081525081526020016040518060400160405280601f81526020017f536572656e6164696e672074686520517565656e206f6620456e676c616e640081525081526020016040518060400160405280601681526020017f53696d70696e6720746f204472616b6520736f6e67730000000000000000000081525081526020016040518060600160405280602d815260200162007336602d913981526020016040518060400160405280601d81526020017f456174696e67206120626967206173732063616e206f66206265616e7300000081525081526020016040518060400160405280601881526020017f476976696e6720536174616e2061206c61702064616e6365000000000000000081525081526020016040518060400160405280601e81526020017f48697474696e67206120626c756e742077697468204a6f6520526f67616e00008152508152602001604051806060016040528060388152602001620073ce603891398152602001604051806060016040528060288152602001620073856028913981526020016040518060400160405280600f81526020017f4f6e20612066697273742064617465000000000000000000000000000000000081525081526020016040518060400160405280601781526020017f427579696e672074686520636f6e737469747574696f6e0000000000000000008152508152602001604051806060016040528060228152602001620073636022913981526020016040518060400160405280600f81526020017f5175697474696e67206d79206a6f62000000000000000000000000000000000081525081526020016040518060400160405280601b81526020017f41726775696e672077697468206120426974636f696e206d617869000000000081525081526020016040518060400160405280601581526020017f47657474696e67206120636f6c6f6e6f73636f7079000000000000000000000081525081526020016040518060400160405280601681526020017f41726d2077726573746c696e672054686520526f636b0000000000000000000081525081526020016040518060400160405280600b81526020017f53686974706f7374696e6700000000000000000000000000000000000000000081525081526020016040518060400160405280601e81526020017f57616974696e67206f6e20676173206665657320746f20676f20646f776e000081525081526020016040518060400160405280601a81526020017f52616973696e67206120243130304d207365656420726f756e6400000000000081525081526020016040518060400160405280600e81526020017f47657474696e6720776173746564000000000000000000000000000000000000815250815250600f90602062000d07929190620019e1565b506040518061028001604052806040518060400160405280601081526020017f4d7920626972746864617920737569740000000000000000000000000000000081525081526020016040518060400160405280601381526020017f41205370696465726d616e20636f7374756d650000000000000000000000000081525081526020016040518060400160405280601181526020017f536f636b7320616e642073616e64616c7300000000000000000000000000000081525081526020016040518060400160405280600581526020017f43726f63730000000000000000000000000000000000000000000000000000008152508152602001604051806060016040528060218152602001620073ad6021913981526020016040518060400160405280601681526020017f5374657665204a6f62277320747572746c656e65636b0000000000000000000081525081526020016040518060400160405280601581526020017f4120677265792050617461676f6e69612076657374000000000000000000000081525081526020016040518060400160405280601181526020017f416e204f63756c7573206865616473657400000000000000000000000000000081525081526020016040518060400160405280600f81526020017f48656c6c612073756e73637265656e000000000000000000000000000000000081525081526020016040518060400160405280600681526020017f5965657a7973000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f446f72612773206261636b7061636b000000000000000000000000000000000081525081526020016040518060400160405280601781526020017f4265726e69652053616e6465722773206d697474656e7300000000000000000081525081526020016040518060400160405280601081526020017f54696d6265726c616e6420626f6f74730000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f412070616e6461206f6e6573696500000000000000000000000000000000000081525081526020016040518060400160405280601a81526020017f576f6c66206f662057616c6c205374726565742773207375697400000000000081525081526020016040518060400160405280601081526020017f412053757072656d6520486f6f6469650000000000000000000000000000000081525081526020016040518060400160405280600881526020017f412053706565646f00000000000000000000000000000000000000000000000081525081526020016040518060400160405280601e81526020017f4a616b652066726f6d205374617465204661726d27732073776561746572000081525081526020016040518060400160405280600c81526020017f412047756363692062656c74000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f4120536b69206d61736b000000000000000000000000000000000000000000008152508152506010906014620011a492919062001a48565b506040518061030001604052806040518060400160405280600b81526020017f4f6e20746865206d6f6f6e00000000000000000000000000000000000000000081525081526020016040518060400160405280601981526020017f4174206b6172616f6b65207769746820566f6c64656d6f72740000000000000081525081526020016040518060400160405280601081526020017f496e20746865206d65746176657273650000000000000000000000000000000081525081526020016040518060400160405280600d81526020017f4f6e2074686520746f696c65740000000000000000000000000000000000000081525081526020016040518060400160405280600f81526020017f4174204f6c6976652047617264656e000000000000000000000000000000000081525081526020016040518060400160405280601981526020017f496e2061205072697573207769746820456c6f6e204d75736b0000000000000081525081526020016040518060400160405280601c81526020017f496e20612070696e656170706c6520756e64657220746865207365610000000081525081526020016040518060400160405280601781526020017f496e206d7920706172656e74732720626173656d656e7400000000000000000081525081526020016040518060400160405280601781526020017f496e20536e6f6f7020446f67672773206d616e73696f6e00000000000000000081525081526020016040518060400160405280601b81526020017f417420746865205345432043686169726d616e277320686f757365000000000081525081526020016040518060400160405280601381526020017f496e2053636f6f627920446f6f27732076616e0000000000000000000000000081525081526020016040518060400160405280601981526020017f4f6e207374616765206174206120636f6d65647920636c75620000000000000081525081526020016040518060400160405280600d81526020017f4f6e20746865207375627761790000000000000000000000000000000000000081525081526020016040518060400160405280600e81526020017f496e206c696e652061742054534100000000000000000000000000000000000081525081526020016040518060400160405280601581526020017f4f6e204c696c205961636874792773205961636874000000000000000000000081525081526020016040518060400160405280600e81526020017f417420746865204772616d6d797300000000000000000000000000000000000081525081526020016040518060400160405280601781526020017f4174207468652043727970746f2e636f6d204172656e6100000000000000000081525081526020016040518060400160405280600f81526020017f41742054696d657320537175617265000000000000000000000000000000000081525081526020016040518060400160405280601c81526020017f496e20612062696c6c696f6e616972652773207370616365736869700000000081525081526020016040518060400160405280601181526020017f417420612066756e6572616c20686f6d6500000000000000000000000000000081525081526020016040518060400160405280601f81526020017f41742061206e757273696e6720686f6d6527732042696e676f204e696768740081525081526020016040518060400160405280601a81526020017f41742061204a757374696e2042696562657220636f6e6365727400000000000081525081526020016040518060400160405280601481526020017f496e20746865203474682064696d656e73696f6e00000000000000000000000081525081526020016040518060400160405280601581526020017f496e206120476569636f20636f6d6d65726369616c000000000000000000000081525081525060119060186200174992919062001aaf565b506040518060c001604052806040518060400160405280600981526020017f4c6561702059656172000000000000000000000000000000000000000000000081525081526020016040518060400160405280601081526020017f456e64206f662074686520576f726c640000000000000000000000000000000081525081526020016040518060400160405280600881526020017f34323020422e432e00000000000000000000000000000000000000000000000081525081526020016040518060400160405280600a81526020017f343230363920412e442e0000000000000000000000000000000000000000000081525081526020016040518060400160405280600481526020017f313738370000000000000000000000000000000000000000000000000000000081525081526020016040518060400160405280600c81526020017f546865204269672042616e6700000000000000000000000000000000000000008152508152506012906006620018c792919062001b16565b50348015620018d557600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001808190555062001d00565b82805482825590600052602060002090810192821562001977579160200282015b82811115620019765782518290805190602001906200196592919062001b7d565b509160200191906001019062001944565b5b50905062001986919062001c0e565b5090565b828054828255906000526020600020908101928215620019ce579160200282015b82811115620019cd578251829060ff16905591602001919060010190620019ab565b5b509050620019dd919062001c36565b5090565b82805482825590600052602060002090810192821562001a35579160200282015b8281111562001a3457825182908051906020019062001a2392919062001b7d565b509160200191906001019062001a02565b5b50905062001a44919062001c0e565b5090565b82805482825590600052602060002090810192821562001a9c579160200282015b8281111562001a9b57825182908051906020019062001a8a92919062001b7d565b509160200191906001019062001a69565b5b50905062001aab919062001c0e565b5090565b82805482825590600052602060002090810192821562001b03579160200282015b8281111562001b0257825182908051906020019062001af192919062001b7d565b509160200191906001019062001ad0565b5b50905062001b12919062001c0e565b5090565b82805482825590600052602060002090810192821562001b6a579160200282015b8281111562001b6957825182908051906020019062001b5892919062001b7d565b509160200191906001019062001b37565b5b50905062001b79919062001c0e565b5090565b82805462001b8b9062001c9b565b90600052602060002090601f01602090048101928262001baf576000855562001bfb565b82601f1062001bca57805160ff191683800117855562001bfb565b8280016001018555821562001bfb579182015b8281111562001bfa57825182559160200191906001019062001bdd565b5b50905062001c0a919062001c36565b5090565b5b8082111562001c32576000818162001c28919062001c55565b5060010162001c0f565b5090565b5b8082111562001c5157600081600090555060010162001c37565b5090565b50805462001c639062001c9b565b6000825580601f1062001c77575062001c98565b601f01602090049060005260206000209081019062001c97919062001c36565b5b50565b6000600282049050600182168062001cb457607f821691505b6020821081141562001ccb5762001cca62001cd1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6155f88062001d106000396000f3fe6080604052600436106102045760003560e01c80637c928fe911610118578063a324ad24116100a0578063c87b56dd1161006f578063c87b56dd146107ee578063cb75ddf71461082b578063d48f424514610868578063e985e9c5146108a5578063f2fde38b146108e257610204565b8063a324ad241461070e578063b214070e1461074b578063b88d4fde14610788578063c757e6fe146107b157610204565b806391b7f5ed116100e757806391b7f5ed14610626578063922635d81461064f578063990abeab1461068c578063a0712d68146106c9578063a22cb465146106e557610204565b80637c928fe91461056a5780637f7b1393146105935780638da5cb5b146105d05780638f32d59b146105fb57610204565b8063547520fe1161019b57806370a082311161016a57806370a082311461045f578063715018a61461049c57806373627826146104b35780637834ff29146104f05780637877f72d1461052d57610204565b8063547520fe146103a35780636352211e146103cc57806369f54ce8146104095780636e3b0a6a1461043457610204565b80633af0fa64116101d75780633af0fa64146102d55780633ccfd60b1461031257806342842e0e1461033d5780634ba4d7841461036657610204565b806301ffc9a714610209578063081812fc14610246578063095ea7b31461028357806323b872dd146102ac575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613e43565b61090b565b60405161023d9190614c8d565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190613e95565b610985565b60405161027a9190614c26565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a59190613e07565b610a0a565b005b3480156102b857600080fd5b506102d360048036038101906102ce9190613d01565b610b22565b005b3480156102e157600080fd5b506102fc60048036038101906102f79190613e95565b610b82565b6040516103099190614ca8565b60405180910390f35b34801561031e57600080fd5b50610327610cf2565b6040516103349190614c8d565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613d01565b610d59565b005b34801561037257600080fd5b5061038d60048036038101906103889190613e95565b610d79565b60405161039a9190614ca8565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613e95565b610e2b565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190613e95565b610e46565b6040516104009190614c26565b60405180910390f35b34801561041557600080fd5b5061041e610ef8565b60405161042b9190614f0a565b60405180910390f35b34801561044057600080fd5b50610449610f02565b6040516104569190614f0a565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190613c9c565b610f0c565b6040516104939190614f0a565b60405180910390f35b3480156104a857600080fd5b506104b1610fc4565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613e95565b61107b565b6040516104e79190614ca8565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613c9c565b6110c2565b6040516105249190614f0a565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190613e95565b61110b565b6040516105619190614ca8565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190613e95565b6111f5565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190613e95565b6113c7565b6040516105c79190614ca8565b60405180910390f35b3480156105dc57600080fd5b506105e56114e1565b6040516105f29190614c26565b60405180910390f35b34801561060757600080fd5b5061061061150a565b60405161061d9190614c8d565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613e95565b611561565b005b34801561065b57600080fd5b5061067660048036038101906106719190613e95565b61157c565b6040516106839190614ca8565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190613e95565b611696565b6040516106c09190614ca8565b60405180910390f35b6106e360048036038101906106de9190613e95565b61172b565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613dcb565b61196e565b005b34801561071a57600080fd5b5061073560048036038101906107309190613e95565b611984565b6040516107429190614ca8565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190613e95565b611a9e565b60405161077f9190614ca8565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190613d50565b611bb8565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190613c9c565b611c1a565b6040516107e59190614f0a565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613e95565b611c32565b6040516108229190614ca8565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d9190613e95565b612893565b60405161085f9190614f0a565b60405180910390f35b34801561087457600080fd5b5061088f600480360381019061088a9190613e95565b61292a565b60405161089c9190614ca8565b60405180910390f35b3480156108b157600080fd5b506108cc60048036038101906108c79190613cc5565b612a53565b6040516108d99190614c8d565b60405180910390f35b3480156108ee57600080fd5b5061090960048036038101906109049190613c9c565b612ae7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097e575061097d82612b04565b5b9050919050565b600061099082612b6e565b6109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c690614e2a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1582610e46565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90614e8a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa5612bda565b73ffffffffffffffffffffffffffffffffffffffff161480610ad45750610ad381610ace612bda565b612a53565b5b610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90614daa565b60405180910390fd5b610b1d8383612be2565b505050565b610b33610b2d612bda565b82612c9b565b610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990614eaa565b60405180910390fd5b610b7d838383612d79565b505050565b60606000610b8f83612fd5565b90506000811415610bd8576040518060400160405280600681526020017f636f6d6d6f6e0000000000000000000000000000000000000000000000000000815250915050610ced565b610ce9836040518060400160405280600681526020017f52415249545900000000000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b82821015610ce0578382906000526020600020018054610c5390615194565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7f90615194565b8015610ccc5780601f10610ca157610100808354040283529160200191610ccc565b820191906000526020600020905b815481529060010190602001808311610caf57829003601f168201915b505050505081526020019060010190610c34565b5050505061303a565b9150505b919050565b6000610cfc61150a565b610d0557600080fd5b60003390508073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d50573d6000803e3d6000fd5b50600191505090565b610d7483838360405180602001604052806000815250611bb8565b505050565b60606000610dad610d89846130cf565b604051602001610d999190614b7c565b60405160208183030381529060405261327c565b90506000603c82610dbe919061520f565b9050600a8110610df957610dd1816130cf565b604051602001610de19190614be2565b60405160208183030381529060405292505050610e26565b610e02816130cf565b604051602001610e129190614b15565b604051602081830303815290604052925050505b919050565b610e3361150a565b610e3c57600080fd5b8060088190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690614dea565b60405180910390fd5b80915050919050565b6000600654905090565b6000600754905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490614dca565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fcc61150a565b610fd557600080fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a260008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006110888361110b565b9050600061109584610d79565b905081816040516020016110aa929190614ac4565b60405160208183030381529060405292505050919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606000611118836132af565b90506000600c8281548110611156577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001805461116b90615194565b80601f016020809104026020016040519081016040528092919081815260200182805461119790615194565b80156111e45780601f106111b9576101008083540402835291602001916111e4565b820191906000526020600020905b8154815290600101906020018083116111c757829003601f168201915b505050505090508092505050919050565b6002600154141561123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123290614eea565b60405180910390fd5b60026001819055506014811115611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90614e6a565b60405180910390fd5b60095461129f8260065461330390919063ffffffff16565b11156112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790614d8a565b60405180910390fd5b60005b818110156113bc576112fe6112f6612bda565b600654613319565b611314600160065461330390919063ffffffff16565b6006819055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113669190614fc9565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806113b4906151c6565b9150506112e3565b506001808190555050565b60606114da826040518060400160405280600881526020017f4c4f434154494f4e0000000000000000000000000000000000000000000000008152506011805480602002602001604051908101604052809291908181526020016000905b828210156114d157838290600052602060002001805461144490615194565b80601f016020809104026020016040519081016040528092919081815260200182805461147090615194565b80156114bd5780601f10611492576101008083540402835291602001916114bd565b820191906000526020600020905b8154815290600101906020018083116114a057829003601f168201915b505050505081526020019060010190611425565b5050505061303a565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b61156961150a565b61157257600080fd5b80600b8190555050565b606061168f826040518060400160405280600881526020017f4143544956495459000000000000000000000000000000000000000000000000815250600f805480602002602001604051908101604052809291908181526020016000905b828210156116865783829060005260206000200180546115f990615194565b80601f016020809104026020016040519081016040528092919081815260200182805461162590615194565b80156116725780601f1061164757610100808354040283529160200191611672565b820191906000526020600020905b81548152906001019060200180831161165557829003601f168201915b5050505050815260200190600101906115da565b5050505061303a565b9050919050565b606060006116a383612893565b905060008114156116ec576040518060400160405280600281526020017f414d000000000000000000000000000000000000000000000000000000000000815250915050611726565b6040518060400160405280600281526020017f504d0000000000000000000000000000000000000000000000000000000000008152509150505b919050565b60026001541415611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890614eea565b60405180910390fd5b600260018190555060148111156117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b490614e6a565b60405180910390fd5b6117d460095460085461333790919063ffffffff16565b6117e98260075461330390919063ffffffff16565b111561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190614d2a565b60405180910390fd5b600b54816118389190615050565b34101561187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190614eca565b60405180910390fd5b60005b81811015611963576118a5611890612bda565b6009546007546118a09190614fc9565b613319565b6118bb600160075461330390919063ffffffff16565b6007819055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461190d9190614fc9565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061195b906151c6565b91505061187d565b506001808190555050565b611980611979612bda565b838361334d565b5050565b6060611a97826040518060400160405280600581526020017f4d4f4e5448000000000000000000000000000000000000000000000000000000815250600e805480602002602001604051908101604052809291908181526020016000905b82821015611a8e578382906000526020600020018054611a0190615194565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2d90615194565b8015611a7a5780601f10611a4f57610100808354040283529160200191611a7a565b820191906000526020600020905b815481529060010190602001808311611a5d57829003601f168201915b5050505050815260200190600101906119e2565b5050505061303a565b9050919050565b6060611bb1826040518060400160405280600681526020017f4f555446495400000000000000000000000000000000000000000000000000008152506010805480602002602001604051908101604052809291908181526020016000905b82821015611ba8578382906000526020600020018054611b1b90615194565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4790615194565b8015611b945780601f10611b6957610100808354040283529160200191611b94565b820191906000526020600020905b815481529060010190602001808311611b7757829003601f168201915b505050505081526020019060010190611afc565b5050505061303a565b9050919050565b611bc9611bc3612bda565b83612c9b565b611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90614eaa565b60405180910390fd5b611c14848484846134ba565b50505050565b600a6020528060005260406000206000915090505481565b6060611c3c613ba3565b60405180610120016040528060fd815260200161543560fd913981600060118110611c90577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611ca18361292a565b81600160118110611cdb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806028815260200161559b6028913981600260118110611d36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611d478361107b565b81600360118110611d81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806028815260200161536a6028913981600460118110611ddc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611ded83611696565b81600560118110611e27577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602881526020016153e46028913981600660118110611e82577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611e9383611984565b81600760118110611ecd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806029815260200161540c6029913981600860118110611f28577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611f398361157c565b81600960118110611f73577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016153bb6029913981600a60118110611fce577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611fdf83611a9e565b81600b60118110612019577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016155326029913981600c60118110612074577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250612085836113c7565b81600d601181106120bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016153926029913981600e6011811061211a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250600061212d84612fd5565b905061213884610b82565b82600f60118110612172577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000815250826010601181106121ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060008260006011811061222e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518360016011811061226d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151846002601181106122ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151856003601181106122eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518660046011811061232a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600560118110612369577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151886006601181106123a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151896007601181106123e7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518a600860118110612426577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160405160200161244399989796959493929190614a45565b60405160208183030381529060405290506000821415612604578083600960118110612498577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600a601181106124d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600b60118110612516577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600c60118110612555577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600d60118110612594577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151886010601181106125d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201516040516020016125ee97969594939291906149e0565b6040516020818303038152906040529050612827565b808360096011811061263f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600a6011811061267e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600b601181106126bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600c601181106126fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600d6011811061273b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015188600e6011811061277a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015189600f601181106127b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518a6010601181106127f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160405160200161281599989796959493929190614a45565b60405160208183030381529060405290505b6000612863612835876130cf565b61283e84613516565b60405160200161284f929190614b37565b604051602081830303815290604052613516565b9050806040516020016128769190614bc0565b604051602081830303815290604052915081945050505050919050565b6000806128c66128a2846130cf565b6040516020016128b29190614b9e565b60405160208183030381529060405261327c565b90506000600d8080549050836128dc919061520f565b81548110612913577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508092505050919050565b60606000612937836132af565b9050600061294484612893565b9050600482101580156129575750600b82105b80156129635750600081145b156129a7576040518060400160405280600281526020017f676d00000000000000000000000000000000000000000000000000000000000081525092505050612a4e565b600b8214806129c35750600082101580156129c25750600682105b5b80156129cf5750600181145b15612a13576040518060400160405280600281526020017f676500000000000000000000000000000000000000000000000000000000000081525092505050612a4e565b6040518060400160405280600281526020017f676e000000000000000000000000000000000000000000000000000000000000815250925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612aef61150a565b612af857600080fd5b612b01816136d4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c5583610e46565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ca682612b6e565b612ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdc90614d6a565b60405180910390fd5b6000612cf083610e46565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d5f57508373ffffffffffffffffffffffffffffffffffffffff16612d4784610985565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d705750612d6f8185612a53565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d9982610e46565b73ffffffffffffffffffffffffffffffffffffffff1614612def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de690614e4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5690614d0a565b60405180910390fd5b612e6a8383836137cb565b612e75600082612be2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ec591906150aa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f1c9190614fc9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080613008612fe4846130cf565b604051602001612ff49190614c04565b60405160208183030381529060405261327c565b90506000607882613019919061520f565b90506072811061302e57600192505050613035565b6000925050505b919050565b606060006130708461304b876130cf565b60405160200161305c9291906149bc565b60405160208183030381529060405261327c565b9050600083845183613082919061520f565b815181106130b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080925050509392505050565b60606000821415613117576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613277565b600082905060005b60008214613149578080613132906151c6565b915050600a82613142919061501f565b915061311f565b60008167ffffffffffffffff81111561318b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131bd5781602001600182028036833780820191505090505b5090505b60008514613270576001826131d691906150aa565b9150600a856131e5919061520f565b60306131f19190614fc9565b60f81b81838151811061322d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613269919061501f565b94506131c1565b8093505050505b919050565b60008160405160200161328f91906149a5565b6040516020818303038152906040528051906020012060001c9050919050565b6000806132e26132be846130cf565b6040516020016132ce9190614af3565b60405160208183030381529060405261327c565b90506000600c80549050826132f7919061520f565b90508092505050919050565b600081836133119190614fc9565b905092915050565b6133338282604051806020016040528060008152506137d0565b5050565b6000818361334591906150aa565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b390614d4a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516134ad9190614c8d565b60405180910390a3505050565b6134c5848484612d79565b6134d18484848461382b565b613510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350790614cca565b60405180910390fd5b50505050565b6060600082519050600081141561353f57604051806020016040528060008152509150506136cf565b600060036002836135509190614fc9565b61355a919061501f565b60046135669190615050565b905060006020826135779190614fc9565b67ffffffffffffffff8111156135b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135e85781602001600182028036833780820191505090505b509050600060405180606001604052806040815260200161555b604091399050600181016020830160005b8681101561368c5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050613613565b5060038606600181146136a657600281146136b6576136c1565b613d3d60f01b60028303526136c1565b603d60f81b60018303525b508484525050819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561370e57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b6137da83836139c2565b6137e7600084848461382b565b613826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161381d90614cca565b60405180910390fd5b505050565b600061384c8473ffffffffffffffffffffffffffffffffffffffff16613b90565b156139b5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613875612bda565b8786866040518563ffffffff1660e01b81526004016138979493929190614c41565b602060405180830381600087803b1580156138b157600080fd5b505af19250505080156138e257506040513d601f19601f820116820180604052508101906138df9190613e6c565b60015b613965573d8060008114613912576040519150601f19603f3d011682016040523d82523d6000602084013e613917565b606091505b5060008151141561395d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395490614cca565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139ba565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2990614e0a565b60405180910390fd5b613a3b81612b6e565b15613a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7290614cea565b60405180910390fd5b613a87600083836137cb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ad79190614fc9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518061022001604052806011905b6060815260200190600190039081613bb35790505090565b6000613bde613bd984614f56565b614f25565b905082815260208101848484011115613bf657600080fd5b613c01848285615152565b509392505050565b600081359050613c188161530d565b92915050565b600081359050613c2d81615324565b92915050565b600081359050613c428161533b565b92915050565b600081519050613c578161533b565b92915050565b600082601f830112613c6e57600080fd5b8135613c7e848260208601613bcb565b91505092915050565b600081359050613c9681615352565b92915050565b600060208284031215613cae57600080fd5b6000613cbc84828501613c09565b91505092915050565b60008060408385031215613cd857600080fd5b6000613ce685828601613c09565b9250506020613cf785828601613c09565b9150509250929050565b600080600060608486031215613d1657600080fd5b6000613d2486828701613c09565b9350506020613d3586828701613c09565b9250506040613d4686828701613c87565b9150509250925092565b60008060008060808587031215613d6657600080fd5b6000613d7487828801613c09565b9450506020613d8587828801613c09565b9350506040613d9687828801613c87565b925050606085013567ffffffffffffffff811115613db357600080fd5b613dbf87828801613c5d565b91505092959194509250565b60008060408385031215613dde57600080fd5b6000613dec85828601613c09565b9250506020613dfd85828601613c1e565b9150509250929050565b60008060408385031215613e1a57600080fd5b6000613e2885828601613c09565b9250506020613e3985828601613c87565b9150509250929050565b600060208284031215613e5557600080fd5b6000613e6384828501613c33565b91505092915050565b600060208284031215613e7e57600080fd5b6000613e8c84828501613c48565b91505092915050565b600060208284031215613ea757600080fd5b6000613eb584828501613c87565b91505092915050565b613ec7816150de565b82525050565b613ed6816150f0565b82525050565b6000613ee782614f86565b613ef18185614f9c565b9350613f01818560208601615161565b613f0a816152fc565b840191505092915050565b6000613f2082614f91565b613f2a8185614fad565b9350613f3a818560208601615161565b613f43816152fc565b840191505092915050565b6000613f5982614f91565b613f638185614fbe565b9350613f73818560208601615161565b80840191505092915050565b6000613f8c600583614fbe565b91507f484f5552530000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000613fcc600183614fbe565b91507f30000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b600061400c603283614fad565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614072601c83614fad565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006140b361014b83614fbe565b91507f222c20226465736372697074696f6e223a202242757920596f7572204f776e2060008301527f54696d65202842594f54292069732061204c6f6f74207370696e2d6f6666206660208301527f726f6d20746865207465616d2061742054686520496e66696e69747920436f6c60408301527f6c656374696f6e732e205468652070726f6a65637420636f6d62696e6573207460608301527f686520636f6e63657074206f66204c6f6f7420776974682074686520656e746560808301527f727461696e696e672c207368617261626c65207175616c697479206f66204d6160a08301527f64204c6962732e204d696e7420612042594f5420616e6420726563656976652060c08301527f612062697a61727265207363656e6172696f20646570696374696e672077686160e08301527f7420796f752061726520646f696e672061742061206d6f6d656e7420696e20746101008301527f696d652e222c2022696d616765223a2022646174613a696d6167652f7376672b6101208301527f786d6c3b6261736536342c00000000000000000000000000000000000000000061014083015261014b82019050919050565b6000614273602483614fad565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142d9601a83614fad565b91507f57696c6c2065786365656420616c6c6f74656420737570706c790000000000006000830152602082019050919050565b6000614319601983614fad565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614359602c83614fad565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143bf601f83614fad565b91507f57696c6c2065786365656420616c6c6f746564206672656520737570706c79006000830152602082019050919050565b60006143ff603883614fad565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614465602a83614fad565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006144cb602983614fad565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614531601083614fbe565b91507f7b226e616d65223a202242594f542023000000000000000000000000000000006000830152601082019050919050565b6000614571600283614fbe565b91507f227d0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b60006145b1602083614fad565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006145f1602c83614fad565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614657600183614fbe565b91507f3a000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000614697602983614fad565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006146fd600783614fbe565b91507f4d494e55544553000000000000000000000000000000000000000000000000006000830152600782019050919050565b600061473d601983614fad565b91507f43616e206f6e6c79206d696e742061206d6178206f66203230000000000000006000830152602082019050919050565b600061477d602183614fad565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147e3600683614fbe565b91507f53554646495800000000000000000000000000000000000000000000000000006000830152600682019050919050565b6000614823601d83614fbe565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000614863600083614fbe565b9150600082019050919050565b600061487d603183614fad565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006148e3601583614fad565b91507f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006000830152602082019050919050565b6000614923600683614fbe565b91507f52415249545900000000000000000000000000000000000000000000000000006000830152600682019050919050565b6000614963601f83614fad565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b61499f81615148565b82525050565b60006149b18284613f4e565b915081905092915050565b60006149c88285613f4e565b91506149d48284613f4e565b91508190509392505050565b60006149ec828a613f4e565b91506149f88289613f4e565b9150614a048288613f4e565b9150614a108287613f4e565b9150614a1c8286613f4e565b9150614a288285613f4e565b9150614a348284613f4e565b915081905098975050505050505050565b6000614a51828c613f4e565b9150614a5d828b613f4e565b9150614a69828a613f4e565b9150614a758289613f4e565b9150614a818288613f4e565b9150614a8d8287613f4e565b9150614a998286613f4e565b9150614aa58285613f4e565b9150614ab18284613f4e565b91508190509a9950505050505050505050565b6000614ad08285613f4e565b9150614adb8261464a565b9150614ae78284613f4e565b91508190509392505050565b6000614afe82613f7f565b9150614b0a8284613f4e565b915081905092915050565b6000614b2082613fbf565b9150614b2c8284613f4e565b915081905092915050565b6000614b4282614524565b9150614b4e8285613f4e565b9150614b59826140a5565b9150614b658284613f4e565b9150614b7082614564565b91508190509392505050565b6000614b87826146f0565b9150614b938284613f4e565b915081905092915050565b6000614ba9826147d6565b9150614bb58284613f4e565b915081905092915050565b6000614bcb82614816565b9150614bd78284613f4e565b915081905092915050565b6000614bed82614856565b9150614bf98284613f4e565b915081905092915050565b6000614c0f82614916565b9150614c1b8284613f4e565b915081905092915050565b6000602082019050614c3b6000830184613ebe565b92915050565b6000608082019050614c566000830187613ebe565b614c636020830186613ebe565b614c706040830185614996565b8181036060830152614c828184613edc565b905095945050505050565b6000602082019050614ca26000830184613ecd565b92915050565b60006020820190508181036000830152614cc28184613f15565b905092915050565b60006020820190508181036000830152614ce381613fff565b9050919050565b60006020820190508181036000830152614d0381614065565b9050919050565b60006020820190508181036000830152614d2381614266565b9050919050565b60006020820190508181036000830152614d43816142cc565b9050919050565b60006020820190508181036000830152614d638161430c565b9050919050565b60006020820190508181036000830152614d838161434c565b9050919050565b60006020820190508181036000830152614da3816143b2565b9050919050565b60006020820190508181036000830152614dc3816143f2565b9050919050565b60006020820190508181036000830152614de381614458565b9050919050565b60006020820190508181036000830152614e03816144be565b9050919050565b60006020820190508181036000830152614e23816145a4565b9050919050565b60006020820190508181036000830152614e43816145e4565b9050919050565b60006020820190508181036000830152614e638161468a565b9050919050565b60006020820190508181036000830152614e8381614730565b9050919050565b60006020820190508181036000830152614ea381614770565b9050919050565b60006020820190508181036000830152614ec381614870565b9050919050565b60006020820190508181036000830152614ee3816148d6565b9050919050565b60006020820190508181036000830152614f0381614956565b9050919050565b6000602082019050614f1f6000830184614996565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614f4c57614f4b6152cd565b5b8060405250919050565b600067ffffffffffffffff821115614f7157614f706152cd565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614fd482615148565b9150614fdf83615148565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561501457615013615240565b5b828201905092915050565b600061502a82615148565b915061503583615148565b9250826150455761504461526f565b5b828204905092915050565b600061505b82615148565b915061506683615148565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561509f5761509e615240565b5b828202905092915050565b60006150b582615148565b91506150c083615148565b9250828210156150d3576150d2615240565b5b828203905092915050565b60006150e982615128565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561517f578082015181840152602081019050615164565b8381111561518e576000848401525b50505050565b600060028204905060018216806151ac57607f821691505b602082108114156151c0576151bf61529e565b5b50919050565b60006151d182615148565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561520457615203615240565b5b600182019050919050565b600061521a82615148565b915061522583615148565b9250826152355761523461526f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615316816150de565b811461532157600080fd5b50565b61532d816150f0565b811461533857600080fd5b50565b615344816150fc565b811461534f57600080fd5b50565b61535b81615148565b811461536657600080fd5b5056fe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea26469706673582212203d2af5faaea75e4440bc37580d0bd820ff1679fff9b93e8bb3bdad01f537d74464736f6c634300080000335761746368696e67204a61636b20446f7273657920616e64206131367a20726f6173742065616368206f746865724669677572696e67206f75742077686174277320696e2053756277617927732074756e612073616e64776963685468726f77696e67207570206f6e204b656e204772696666696e277320736869727447657474696e672061207065646963757265207769746820456c697a61626574682057617272656e486172727920506f74746572277320696e7669736962696c69747920636c6f616b47657474696e6720696e746f20612054776974746572206669676874206f766572204368696b2d66696c2d612076732e20506f7065796573

Deployed Bytecode

0x6080604052600436106102045760003560e01c80637c928fe911610118578063a324ad24116100a0578063c87b56dd1161006f578063c87b56dd146107ee578063cb75ddf71461082b578063d48f424514610868578063e985e9c5146108a5578063f2fde38b146108e257610204565b8063a324ad241461070e578063b214070e1461074b578063b88d4fde14610788578063c757e6fe146107b157610204565b806391b7f5ed116100e757806391b7f5ed14610626578063922635d81461064f578063990abeab1461068c578063a0712d68146106c9578063a22cb465146106e557610204565b80637c928fe91461056a5780637f7b1393146105935780638da5cb5b146105d05780638f32d59b146105fb57610204565b8063547520fe1161019b57806370a082311161016a57806370a082311461045f578063715018a61461049c57806373627826146104b35780637834ff29146104f05780637877f72d1461052d57610204565b8063547520fe146103a35780636352211e146103cc57806369f54ce8146104095780636e3b0a6a1461043457610204565b80633af0fa64116101d75780633af0fa64146102d55780633ccfd60b1461031257806342842e0e1461033d5780634ba4d7841461036657610204565b806301ffc9a714610209578063081812fc14610246578063095ea7b31461028357806323b872dd146102ac575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613e43565b61090b565b60405161023d9190614c8d565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190613e95565b610985565b60405161027a9190614c26565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a59190613e07565b610a0a565b005b3480156102b857600080fd5b506102d360048036038101906102ce9190613d01565b610b22565b005b3480156102e157600080fd5b506102fc60048036038101906102f79190613e95565b610b82565b6040516103099190614ca8565b60405180910390f35b34801561031e57600080fd5b50610327610cf2565b6040516103349190614c8d565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613d01565b610d59565b005b34801561037257600080fd5b5061038d60048036038101906103889190613e95565b610d79565b60405161039a9190614ca8565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613e95565b610e2b565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190613e95565b610e46565b6040516104009190614c26565b60405180910390f35b34801561041557600080fd5b5061041e610ef8565b60405161042b9190614f0a565b60405180910390f35b34801561044057600080fd5b50610449610f02565b6040516104569190614f0a565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190613c9c565b610f0c565b6040516104939190614f0a565b60405180910390f35b3480156104a857600080fd5b506104b1610fc4565b005b3480156104bf57600080fd5b506104da60048036038101906104d59190613e95565b61107b565b6040516104e79190614ca8565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613c9c565b6110c2565b6040516105249190614f0a565b60405180910390f35b34801561053957600080fd5b50610554600480360381019061054f9190613e95565b61110b565b6040516105619190614ca8565b60405180910390f35b34801561057657600080fd5b50610591600480360381019061058c9190613e95565b6111f5565b005b34801561059f57600080fd5b506105ba60048036038101906105b59190613e95565b6113c7565b6040516105c79190614ca8565b60405180910390f35b3480156105dc57600080fd5b506105e56114e1565b6040516105f29190614c26565b60405180910390f35b34801561060757600080fd5b5061061061150a565b60405161061d9190614c8d565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613e95565b611561565b005b34801561065b57600080fd5b5061067660048036038101906106719190613e95565b61157c565b6040516106839190614ca8565b60405180910390f35b34801561069857600080fd5b506106b360048036038101906106ae9190613e95565b611696565b6040516106c09190614ca8565b60405180910390f35b6106e360048036038101906106de9190613e95565b61172b565b005b3480156106f157600080fd5b5061070c60048036038101906107079190613dcb565b61196e565b005b34801561071a57600080fd5b5061073560048036038101906107309190613e95565b611984565b6040516107429190614ca8565b60405180910390f35b34801561075757600080fd5b50610772600480360381019061076d9190613e95565b611a9e565b60405161077f9190614ca8565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190613d50565b611bb8565b005b3480156107bd57600080fd5b506107d860048036038101906107d39190613c9c565b611c1a565b6040516107e59190614f0a565b60405180910390f35b3480156107fa57600080fd5b5061081560048036038101906108109190613e95565b611c32565b6040516108229190614ca8565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d9190613e95565b612893565b60405161085f9190614f0a565b60405180910390f35b34801561087457600080fd5b5061088f600480360381019061088a9190613e95565b61292a565b60405161089c9190614ca8565b60405180910390f35b3480156108b157600080fd5b506108cc60048036038101906108c79190613cc5565b612a53565b6040516108d99190614c8d565b60405180910390f35b3480156108ee57600080fd5b5061090960048036038101906109049190613c9c565b612ae7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097e575061097d82612b04565b5b9050919050565b600061099082612b6e565b6109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c690614e2a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a1582610e46565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d90614e8a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610aa5612bda565b73ffffffffffffffffffffffffffffffffffffffff161480610ad45750610ad381610ace612bda565b612a53565b5b610b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0a90614daa565b60405180910390fd5b610b1d8383612be2565b505050565b610b33610b2d612bda565b82612c9b565b610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990614eaa565b60405180910390fd5b610b7d838383612d79565b505050565b60606000610b8f83612fd5565b90506000811415610bd8576040518060400160405280600681526020017f636f6d6d6f6e0000000000000000000000000000000000000000000000000000815250915050610ced565b610ce9836040518060400160405280600681526020017f52415249545900000000000000000000000000000000000000000000000000008152506012805480602002602001604051908101604052809291908181526020016000905b82821015610ce0578382906000526020600020018054610c5390615194565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7f90615194565b8015610ccc5780601f10610ca157610100808354040283529160200191610ccc565b820191906000526020600020905b815481529060010190602001808311610caf57829003601f168201915b505050505081526020019060010190610c34565b5050505061303a565b9150505b919050565b6000610cfc61150a565b610d0557600080fd5b60003390508073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d50573d6000803e3d6000fd5b50600191505090565b610d7483838360405180602001604052806000815250611bb8565b505050565b60606000610dad610d89846130cf565b604051602001610d999190614b7c565b60405160208183030381529060405261327c565b90506000603c82610dbe919061520f565b9050600a8110610df957610dd1816130cf565b604051602001610de19190614be2565b60405160208183030381529060405292505050610e26565b610e02816130cf565b604051602001610e129190614b15565b604051602081830303815290604052925050505b919050565b610e3361150a565b610e3c57600080fd5b8060088190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee690614dea565b60405180910390fd5b80915050919050565b6000600654905090565b6000600754905090565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7490614dca565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fcc61150a565b610fd557600080fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482060405160405180910390a260008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b606060006110888361110b565b9050600061109584610d79565b905081816040516020016110aa929190614ac4565b60405160208183030381529060405292505050919050565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606000611118836132af565b90506000600c8281548110611156577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001805461116b90615194565b80601f016020809104026020016040519081016040528092919081815260200182805461119790615194565b80156111e45780601f106111b9576101008083540402835291602001916111e4565b820191906000526020600020905b8154815290600101906020018083116111c757829003601f168201915b505050505090508092505050919050565b6002600154141561123b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123290614eea565b60405180910390fd5b60026001819055506014811115611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90614e6a565b60405180910390fd5b60095461129f8260065461330390919063ffffffff16565b11156112e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d790614d8a565b60405180910390fd5b60005b818110156113bc576112fe6112f6612bda565b600654613319565b611314600160065461330390919063ffffffff16565b6006819055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113669190614fc9565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806113b4906151c6565b9150506112e3565b506001808190555050565b60606114da826040518060400160405280600881526020017f4c4f434154494f4e0000000000000000000000000000000000000000000000008152506011805480602002602001604051908101604052809291908181526020016000905b828210156114d157838290600052602060002001805461144490615194565b80601f016020809104026020016040519081016040528092919081815260200182805461147090615194565b80156114bd5780601f10611492576101008083540402835291602001916114bd565b820191906000526020600020905b8154815290600101906020018083116114a057829003601f168201915b505050505081526020019060010190611425565b5050505061303a565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b61156961150a565b61157257600080fd5b80600b8190555050565b606061168f826040518060400160405280600881526020017f4143544956495459000000000000000000000000000000000000000000000000815250600f805480602002602001604051908101604052809291908181526020016000905b828210156116865783829060005260206000200180546115f990615194565b80601f016020809104026020016040519081016040528092919081815260200182805461162590615194565b80156116725780601f1061164757610100808354040283529160200191611672565b820191906000526020600020905b81548152906001019060200180831161165557829003601f168201915b5050505050815260200190600101906115da565b5050505061303a565b9050919050565b606060006116a383612893565b905060008114156116ec576040518060400160405280600281526020017f414d000000000000000000000000000000000000000000000000000000000000815250915050611726565b6040518060400160405280600281526020017f504d0000000000000000000000000000000000000000000000000000000000008152509150505b919050565b60026001541415611771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176890614eea565b60405180910390fd5b600260018190555060148111156117bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b490614e6a565b60405180910390fd5b6117d460095460085461333790919063ffffffff16565b6117e98260075461330390919063ffffffff16565b111561182a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182190614d2a565b60405180910390fd5b600b54816118389190615050565b34101561187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190614eca565b60405180910390fd5b60005b81811015611963576118a5611890612bda565b6009546007546118a09190614fc9565b613319565b6118bb600160075461330390919063ffffffff16565b6007819055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461190d9190614fc9565b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550808061195b906151c6565b91505061187d565b506001808190555050565b611980611979612bda565b838361334d565b5050565b6060611a97826040518060400160405280600581526020017f4d4f4e5448000000000000000000000000000000000000000000000000000000815250600e805480602002602001604051908101604052809291908181526020016000905b82821015611a8e578382906000526020600020018054611a0190615194565b80601f0160208091040260200160405190810160405280929190818152602001828054611a2d90615194565b8015611a7a5780601f10611a4f57610100808354040283529160200191611a7a565b820191906000526020600020905b815481529060010190602001808311611a5d57829003601f168201915b5050505050815260200190600101906119e2565b5050505061303a565b9050919050565b6060611bb1826040518060400160405280600681526020017f4f555446495400000000000000000000000000000000000000000000000000008152506010805480602002602001604051908101604052809291908181526020016000905b82821015611ba8578382906000526020600020018054611b1b90615194565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4790615194565b8015611b945780601f10611b6957610100808354040283529160200191611b94565b820191906000526020600020905b815481529060010190602001808311611b7757829003601f168201915b505050505081526020019060010190611afc565b5050505061303a565b9050919050565b611bc9611bc3612bda565b83612c9b565b611c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bff90614eaa565b60405180910390fd5b611c14848484846134ba565b50505050565b600a6020528060005260406000206000915090505481565b6060611c3c613ba3565b60405180610120016040528060fd815260200161543560fd913981600060118110611c90577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611ca18361292a565b81600160118110611cdb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806028815260200161559b6028913981600260118110611d36577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611d478361107b565b81600360118110611d81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806028815260200161536a6028913981600460118110611ddc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611ded83611696565b81600560118110611e27577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602881526020016153e46028913981600660118110611e82577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611e9383611984565b81600760118110611ecd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060405180606001604052806029815260200161540c6029913981600860118110611f28577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611f398361157c565b81600960118110611f73577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016153bb6029913981600a60118110611fce577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250611fdf83611a9e565b81600b60118110612019577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016155326029913981600c60118110612074577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250612085836113c7565b81600d601181106120bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060600160405280602981526020016153926029913981600e6011811061211a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020181905250600061212d84612fd5565b905061213884610b82565b82600f60118110612172577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201819052506040518060400160405280600d81526020017f3c2f746578743e3c2f7376673e00000000000000000000000000000000000000815250826010601181106121ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002018190525060008260006011811061222e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518360016011811061226d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151846002601181106122ac577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151856003601181106122eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518660046011811061232a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600560118110612369577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151886006601181106123a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151896007601181106123e7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518a600860118110612426577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160405160200161244399989796959493929190614a45565b60405160208183030381529060405290506000821415612604578083600960118110612498577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600a601181106124d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600b60118110612516577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600c60118110612555577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600d60118110612594577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151886010601181106125d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201516040516020016125ee97969594939291906149e0565b6040516020818303038152906040529050612827565b808360096011811061263f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015184600a6011811061267e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015185600b601181106126bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015186600c601181106126fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015187600d6011811061273b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015188600e6011811061277a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015189600f601181106127b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200201518a6010601181106127f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160405160200161281599989796959493929190614a45565b60405160208183030381529060405290505b6000612863612835876130cf565b61283e84613516565b60405160200161284f929190614b37565b604051602081830303815290604052613516565b9050806040516020016128769190614bc0565b604051602081830303815290604052915081945050505050919050565b6000806128c66128a2846130cf565b6040516020016128b29190614b9e565b60405160208183030381529060405261327c565b90506000600d8080549050836128dc919061520f565b81548110612913577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508092505050919050565b60606000612937836132af565b9050600061294484612893565b9050600482101580156129575750600b82105b80156129635750600081145b156129a7576040518060400160405280600281526020017f676d00000000000000000000000000000000000000000000000000000000000081525092505050612a4e565b600b8214806129c35750600082101580156129c25750600682105b5b80156129cf5750600181145b15612a13576040518060400160405280600281526020017f676500000000000000000000000000000000000000000000000000000000000081525092505050612a4e565b6040518060400160405280600281526020017f676e000000000000000000000000000000000000000000000000000000000000815250925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612aef61150a565b612af857600080fd5b612b01816136d4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c5583610e46565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612ca682612b6e565b612ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cdc90614d6a565b60405180910390fd5b6000612cf083610e46565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d5f57508373ffffffffffffffffffffffffffffffffffffffff16612d4784610985565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d705750612d6f8185612a53565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d9982610e46565b73ffffffffffffffffffffffffffffffffffffffff1614612def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612de690614e4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5690614d0a565b60405180910390fd5b612e6a8383836137cb565b612e75600082612be2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ec591906150aa565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f1c9190614fc9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080613008612fe4846130cf565b604051602001612ff49190614c04565b60405160208183030381529060405261327c565b90506000607882613019919061520f565b90506072811061302e57600192505050613035565b6000925050505b919050565b606060006130708461304b876130cf565b60405160200161305c9291906149bc565b60405160208183030381529060405261327c565b9050600083845183613082919061520f565b815181106130b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080925050509392505050565b60606000821415613117576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613277565b600082905060005b60008214613149578080613132906151c6565b915050600a82613142919061501f565b915061311f565b60008167ffffffffffffffff81111561318b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131bd5781602001600182028036833780820191505090505b5090505b60008514613270576001826131d691906150aa565b9150600a856131e5919061520f565b60306131f19190614fc9565b60f81b81838151811061322d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613269919061501f565b94506131c1565b8093505050505b919050565b60008160405160200161328f91906149a5565b6040516020818303038152906040528051906020012060001c9050919050565b6000806132e26132be846130cf565b6040516020016132ce9190614af3565b60405160208183030381529060405261327c565b90506000600c80549050826132f7919061520f565b90508092505050919050565b600081836133119190614fc9565b905092915050565b6133338282604051806020016040528060008152506137d0565b5050565b6000818361334591906150aa565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133b390614d4a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516134ad9190614c8d565b60405180910390a3505050565b6134c5848484612d79565b6134d18484848461382b565b613510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350790614cca565b60405180910390fd5b50505050565b6060600082519050600081141561353f57604051806020016040528060008152509150506136cf565b600060036002836135509190614fc9565b61355a919061501f565b60046135669190615050565b905060006020826135779190614fc9565b67ffffffffffffffff8111156135b6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135e85781602001600182028036833780820191505090505b509050600060405180606001604052806040815260200161555b604091399050600181016020830160005b8681101561368c5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050613613565b5060038606600181146136a657600281146136b6576136c1565b613d3d60f01b60028303526136c1565b603d60f81b60018303525b508484525050819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561370e57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b505050565b6137da83836139c2565b6137e7600084848461382b565b613826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161381d90614cca565b60405180910390fd5b505050565b600061384c8473ffffffffffffffffffffffffffffffffffffffff16613b90565b156139b5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613875612bda565b8786866040518563ffffffff1660e01b81526004016138979493929190614c41565b602060405180830381600087803b1580156138b157600080fd5b505af19250505080156138e257506040513d601f19601f820116820180604052508101906138df9190613e6c565b60015b613965573d8060008114613912576040519150601f19603f3d011682016040523d82523d6000602084013e613917565b606091505b5060008151141561395d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395490614cca565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506139ba565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a2990614e0a565b60405180910390fd5b613a3b81612b6e565b15613a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7290614cea565b60405180910390fd5b613a87600083836137cb565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613ad79190614fc9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6040518061022001604052806011905b6060815260200190600190039081613bb35790505090565b6000613bde613bd984614f56565b614f25565b905082815260208101848484011115613bf657600080fd5b613c01848285615152565b509392505050565b600081359050613c188161530d565b92915050565b600081359050613c2d81615324565b92915050565b600081359050613c428161533b565b92915050565b600081519050613c578161533b565b92915050565b600082601f830112613c6e57600080fd5b8135613c7e848260208601613bcb565b91505092915050565b600081359050613c9681615352565b92915050565b600060208284031215613cae57600080fd5b6000613cbc84828501613c09565b91505092915050565b60008060408385031215613cd857600080fd5b6000613ce685828601613c09565b9250506020613cf785828601613c09565b9150509250929050565b600080600060608486031215613d1657600080fd5b6000613d2486828701613c09565b9350506020613d3586828701613c09565b9250506040613d4686828701613c87565b9150509250925092565b60008060008060808587031215613d6657600080fd5b6000613d7487828801613c09565b9450506020613d8587828801613c09565b9350506040613d9687828801613c87565b925050606085013567ffffffffffffffff811115613db357600080fd5b613dbf87828801613c5d565b91505092959194509250565b60008060408385031215613dde57600080fd5b6000613dec85828601613c09565b9250506020613dfd85828601613c1e565b9150509250929050565b60008060408385031215613e1a57600080fd5b6000613e2885828601613c09565b9250506020613e3985828601613c87565b9150509250929050565b600060208284031215613e5557600080fd5b6000613e6384828501613c33565b91505092915050565b600060208284031215613e7e57600080fd5b6000613e8c84828501613c48565b91505092915050565b600060208284031215613ea757600080fd5b6000613eb584828501613c87565b91505092915050565b613ec7816150de565b82525050565b613ed6816150f0565b82525050565b6000613ee782614f86565b613ef18185614f9c565b9350613f01818560208601615161565b613f0a816152fc565b840191505092915050565b6000613f2082614f91565b613f2a8185614fad565b9350613f3a818560208601615161565b613f43816152fc565b840191505092915050565b6000613f5982614f91565b613f638185614fbe565b9350613f73818560208601615161565b80840191505092915050565b6000613f8c600583614fbe565b91507f484f5552530000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000613fcc600183614fbe565b91507f30000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b600061400c603283614fad565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614072601c83614fad565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006140b361014b83614fbe565b91507f222c20226465736372697074696f6e223a202242757920596f7572204f776e2060008301527f54696d65202842594f54292069732061204c6f6f74207370696e2d6f6666206660208301527f726f6d20746865207465616d2061742054686520496e66696e69747920436f6c60408301527f6c656374696f6e732e205468652070726f6a65637420636f6d62696e6573207460608301527f686520636f6e63657074206f66204c6f6f7420776974682074686520656e746560808301527f727461696e696e672c207368617261626c65207175616c697479206f66204d6160a08301527f64204c6962732e204d696e7420612042594f5420616e6420726563656976652060c08301527f612062697a61727265207363656e6172696f20646570696374696e672077686160e08301527f7420796f752061726520646f696e672061742061206d6f6d656e7420696e20746101008301527f696d652e222c2022696d616765223a2022646174613a696d6167652f7376672b6101208301527f786d6c3b6261736536342c00000000000000000000000000000000000000000061014083015261014b82019050919050565b6000614273602483614fad565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006142d9601a83614fad565b91507f57696c6c2065786365656420616c6c6f74656420737570706c790000000000006000830152602082019050919050565b6000614319601983614fad565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614359602c83614fad565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006143bf601f83614fad565b91507f57696c6c2065786365656420616c6c6f746564206672656520737570706c79006000830152602082019050919050565b60006143ff603883614fad565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614465602a83614fad565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006144cb602983614fad565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614531601083614fbe565b91507f7b226e616d65223a202242594f542023000000000000000000000000000000006000830152601082019050919050565b6000614571600283614fbe565b91507f227d0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b60006145b1602083614fad565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006145f1602c83614fad565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614657600183614fbe565b91507f3a000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000614697602983614fad565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006146fd600783614fbe565b91507f4d494e55544553000000000000000000000000000000000000000000000000006000830152600782019050919050565b600061473d601983614fad565b91507f43616e206f6e6c79206d696e742061206d6178206f66203230000000000000006000830152602082019050919050565b600061477d602183614fad565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147e3600683614fbe565b91507f53554646495800000000000000000000000000000000000000000000000000006000830152600682019050919050565b6000614823601d83614fbe565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000614863600083614fbe565b9150600082019050919050565b600061487d603183614fad565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006148e3601583614fad565b91507f4e6f7420656e6f7567682065746865722073656e7400000000000000000000006000830152602082019050919050565b6000614923600683614fbe565b91507f52415249545900000000000000000000000000000000000000000000000000006000830152600682019050919050565b6000614963601f83614fad565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b61499f81615148565b82525050565b60006149b18284613f4e565b915081905092915050565b60006149c88285613f4e565b91506149d48284613f4e565b91508190509392505050565b60006149ec828a613f4e565b91506149f88289613f4e565b9150614a048288613f4e565b9150614a108287613f4e565b9150614a1c8286613f4e565b9150614a288285613f4e565b9150614a348284613f4e565b915081905098975050505050505050565b6000614a51828c613f4e565b9150614a5d828b613f4e565b9150614a69828a613f4e565b9150614a758289613f4e565b9150614a818288613f4e565b9150614a8d8287613f4e565b9150614a998286613f4e565b9150614aa58285613f4e565b9150614ab18284613f4e565b91508190509a9950505050505050505050565b6000614ad08285613f4e565b9150614adb8261464a565b9150614ae78284613f4e565b91508190509392505050565b6000614afe82613f7f565b9150614b0a8284613f4e565b915081905092915050565b6000614b2082613fbf565b9150614b2c8284613f4e565b915081905092915050565b6000614b4282614524565b9150614b4e8285613f4e565b9150614b59826140a5565b9150614b658284613f4e565b9150614b7082614564565b91508190509392505050565b6000614b87826146f0565b9150614b938284613f4e565b915081905092915050565b6000614ba9826147d6565b9150614bb58284613f4e565b915081905092915050565b6000614bcb82614816565b9150614bd78284613f4e565b915081905092915050565b6000614bed82614856565b9150614bf98284613f4e565b915081905092915050565b6000614c0f82614916565b9150614c1b8284613f4e565b915081905092915050565b6000602082019050614c3b6000830184613ebe565b92915050565b6000608082019050614c566000830187613ebe565b614c636020830186613ebe565b614c706040830185614996565b8181036060830152614c828184613edc565b905095945050505050565b6000602082019050614ca26000830184613ecd565b92915050565b60006020820190508181036000830152614cc28184613f15565b905092915050565b60006020820190508181036000830152614ce381613fff565b9050919050565b60006020820190508181036000830152614d0381614065565b9050919050565b60006020820190508181036000830152614d2381614266565b9050919050565b60006020820190508181036000830152614d43816142cc565b9050919050565b60006020820190508181036000830152614d638161430c565b9050919050565b60006020820190508181036000830152614d838161434c565b9050919050565b60006020820190508181036000830152614da3816143b2565b9050919050565b60006020820190508181036000830152614dc3816143f2565b9050919050565b60006020820190508181036000830152614de381614458565b9050919050565b60006020820190508181036000830152614e03816144be565b9050919050565b60006020820190508181036000830152614e23816145a4565b9050919050565b60006020820190508181036000830152614e43816145e4565b9050919050565b60006020820190508181036000830152614e638161468a565b9050919050565b60006020820190508181036000830152614e8381614730565b9050919050565b60006020820190508181036000830152614ea381614770565b9050919050565b60006020820190508181036000830152614ec381614870565b9050919050565b60006020820190508181036000830152614ee3816148d6565b9050919050565b60006020820190508181036000830152614f0381614956565b9050919050565b6000602082019050614f1f6000830184614996565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614f4c57614f4b6152cd565b5b8060405250919050565b600067ffffffffffffffff821115614f7157614f706152cd565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614fd482615148565b9150614fdf83615148565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561501457615013615240565b5b828201905092915050565b600061502a82615148565b915061503583615148565b9250826150455761504461526f565b5b828204905092915050565b600061505b82615148565b915061506683615148565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561509f5761509e615240565b5b828202905092915050565b60006150b582615148565b91506150c083615148565b9250828210156150d3576150d2615240565b5b828203905092915050565b60006150e982615128565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561517f578082015181840152602081019050615164565b8381111561518e576000848401525b50505050565b600060028204905060018216806151ac57607f821691505b602082108114156151c0576151bf61529e565b5b50919050565b60006151d182615148565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561520457615203615240565b5b600182019050919050565b600061521a82615148565b915061522583615148565b9250826152355761523461526f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615316816150de565b811461532157600080fd5b50565b61532d816150f0565b811461533857600080fd5b50565b615344816150fc565b811461534f57600080fd5b50565b61535b81615148565b811461536657600080fd5b5056fe3c2f746578743e3c7465787420783d2231302220793d2236302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223136302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223132302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d2238302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223130302220636c6173733d2262617365223e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3e3c7465787420783d2231302220793d2232302220636c6173733d2262617365223e3c2f746578743e3c7465787420783d2231302220793d223134302220636c6173733d2262617365223e4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c2f746578743e3c7465787420783d2231302220793d2234302220636c6173733d2262617365223ea26469706673582212203d2af5faaea75e4440bc37580d0bd820ff1679fff9b93e8bb3bdad01f537d74464736f6c63430008000033

Deployed Bytecode Sourcemap

314:22623:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13572:236;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4445:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3985:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5172:330;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17837:264;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20504:182;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5568:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14601:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22117:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14129:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21817:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21919:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13867:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1281:113:12;;;;;;;;;;;;;:::i;:::-;;17318:234:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21698:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15236:194;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21250:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16345:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;647:70:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;934:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22019:92:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16053:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15695:213;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20698:546;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4729:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15918:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16203:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5813:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1075:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18112:2320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15440:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16815:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4948:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1555:101:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13572:236:1;13674:4;13724:25;13709:40;;;:11;:40;;;;:92;;;;13765:36;13789:11;13765:23;:36::i;:::-;13709:92;13690:111;;13572:236;;;:::o;4445:217::-;4521:7;4548:16;4556:7;4548;:16::i;:::-;4540:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4631:15;:24;4647:7;4631:24;;;;;;;;;;;;;;;;;;;;;4624:31;;4445:217;;;:::o;3985:399::-;4065:13;4081:21;4094:7;4081:12;:21::i;:::-;4065:37;;4126:5;4120:11;;:2;:11;;;;4112:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;4217:5;4201:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;4226:37;4243:5;4250:12;:10;:12::i;:::-;4226:16;:37::i;:::-;4201:62;4180:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;4356:21;4365:2;4369:7;4356:8;:21::i;:::-;3985:399;;;:::o;5172:330::-;5361:41;5380:12;:10;:12::i;:::-;5394:7;5361:18;:41::i;:::-;5353:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5467:28;5477:4;5483:2;5487:7;5467:9;:28::i;:::-;5172:330;;;:::o;17837:264::-;17896:13;17921:14;17938:18;17948:7;17938:9;:18::i;:::-;17921:35;;17979:1;17969:6;:11;17966:129;;;17995:15;;;;;;;;;;;;;;;;;;;;;;17966:129;18047:37;18056:7;18047:37;;;;;;;;;;;;;;;;;18075:8;18047:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:8;:37::i;:::-;18040:44;;;17837:264;;;;:::o;20504:182::-;20551:4;832:9:12;:7;:9::i;:::-;824:18;;;;;;20566:22:1::1;20599:10;20566:44;;20620:6;:15;;:38;20636:21;20620:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;20675:4;20668:11;;;20504:182:::0;:::o;5568:179::-;5701:39;5718:4;5724:2;5728:7;5701:39;;;;;;;;;;;;:16;:39::i;:::-;5568:179;;;:::o;14601:388::-;14659:13;14684:12;14699:62;14741:17;14750:7;14741:8;:17::i;:::-;14713:46;;;;;;;;:::i;:::-;;;;;;;;;;;;;14699:6;:62::i;:::-;14684:77;;14771:18;14799:2;14792:4;:9;;;;:::i;:::-;14771:30;;14828:2;14814:10;:16;14811:101;;14879:20;14888:10;14879:8;:20::i;:::-;14859:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;14845:56;;;;;;14811:101;14960:20;14969:10;14960:8;:20::i;:::-;14939:42;;;;;;;;:::i;:::-;;;;;;;;;;;;;14925:57;;;;14601:388;;;;:::o;22117:98::-;832:9:12;:7;:9::i;:::-;824:18;;;;;;22198:10:1::1;22184:11;:24;;;;22117:98:::0;:::o;14129:235::-;14201:7;14220:13;14236:7;:16;14244:7;14236:16;;;;;;;;;;;;;;;;;;;;;14220:32;;14287:1;14270:19;;:5;:19;;;;14262:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14352:5;14345:12;;;14129:235;;;:::o;21817:96::-;21867:7;21893:13;;21886:20;;21817:96;:::o;21919:94::-;21968:7;21994:12;;21987:19;;21919:94;:::o;13867:205::-;13939:7;13983:1;13966:19;;:5;:19;;;;13958:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14049:9;:16;14059:5;14049:16;;;;;;;;;;;;;;;;14042:23;;13867:205;;;:::o;1281:113:12:-;832:9;:7;:9::i;:::-;824:18;;;;;;1357:6:::1;::::0;::::1;;;;;;;;1338:26;;;;;;;;;;;;1387:1;1370:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;1281:113::o:0;17318:234:1:-;17372:13;17397:18;17418:17;17427:7;17418:8;:17::i;:::-;17397:38;;17445:20;17468:19;17479:7;17468:10;:19::i;:::-;17445:42;;17528:4;17537:6;17511:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17497:48;;;;17318:234;;;:::o;21698:113::-;21760:7;21785:11;:19;21797:6;21785:19;;;;;;;;;;;;;;;;21778:26;;21698:113;;;:::o;15236:194::-;15292:13;15317;15333:19;15344:7;15333:10;:19::i;:::-;15317:35;;15362:20;15385:8;15394:5;15385:15;;;;;;;;;;;;;;;;;;;;;;;15362:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15417:6;15410:13;;;;15236:194;;;:::o;21250:442::-;1691:1:9;2270:7;;:19;;2262:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1691:1;2400:7;:18;;;;21334:2:1::1;21323:7;:13;;21315:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;21414:10;;21384:26;21402:7;21384:13;;:17;;:26;;;;:::i;:::-;:40;;21376:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;21474:9;21470:216;21493:7;21489:1;:11;21470:216;;;21521:37;21531:12;:10;:12::i;:::-;21544:13;;21521:9;:37::i;:::-;21588:20;21606:1;21588:13;;:17;;:20;;;;:::i;:::-;21572:13;:36;;;;21674:1;21648:11;:23;21660:10;21648:23;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;21622:11;:23;21634:10;21622:23;;;;;;;;;;;;;;;:53;;;;21502:3;;;;;:::i;:::-;;;;21470:216;;;;1648:1:9::0;2573:7;:22;;;;21250:442:1;:::o;16345:138::-;16404:13;16436:40;16445:7;16436:40;;;;;;;;;;;;;;;;;16466:9;16436:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:8;:40::i;:::-;16429:47;;16345:138;;;:::o;647:70:12:-;684:7;706:6;;;;;;;;;;;699:13;;647:70;:::o;934:83::-;973:4;1006:6;;;;;;;;;;;992:20;;:10;:20;;;985:27;;934:83;:::o;22019:92:1:-;832:9:12;:7;:9::i;:::-;824:18;;;;;;22096:8:1::1;22082:10;:22;;;;22019:92:::0;:::o;16053:140::-;16112:13;16145:41;16154:7;16145:41;;;;;;;;;;;;;;;;;16175:10;16145:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:8;:41::i;:::-;16138:48;;16053:140;;;:::o;15695:213::-;15756:13;15781:11;15795:25;15812:7;15795:16;:25::i;:::-;15781:39;;15843:1;15833:6;:11;15830:51;;;15859:11;;;;;;;;;;;;;;;;;;;;;;15830:51;15890:11;;;;;;;;;;;;;;;;;;;;15695:213;;;;:::o;20698:546::-;1691:1:9;2270:7;;:19;;2262:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1691:1;2400:7;:18;;;;20786:2:1::1;20775:7;:13;;20767:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;20865:27;20881:10;;20865:11;;:15;;:27;;;;:::i;:::-;20836:25;20853:7;20836:12;;:16;;:25;;;;:::i;:::-;:56;;20828:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;20965:10;;20955:7;:20;;;;:::i;:::-;20941:9;:35;;20933:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;21016:9;21012:226;21035:7;21031:1;:11;21012:226;;;21063:49;21073:12;:10;:12::i;:::-;21101:10;;21086:12;;:25;;;;:::i;:::-;21063:9;:49::i;:::-;21141:19;21158:1;21141:12;;:16;;:19;;;;:::i;:::-;21126:12;:34;;;;21226:1;21200:11;:23;21212:10;21200:23;;;;;;;;;;;;;;;;:27;;;;:::i;:::-;21174:11;:23;21186:10;21174:23;;;;;;;;;;;;;;;:53;;;;21044:3;;;;;:::i;:::-;;;;21012:226;;;;1648:1:9::0;2573:7;:22;;;;20698:546:1;:::o;4729:153::-;4823:52;4842:12;:10;:12::i;:::-;4856:8;4866;4823:18;:52::i;:::-;4729:153;;:::o;15918:129::-;15974:13;16006:34;16015:7;16006:34;;;;;;;;;;;;;;;;;16033:6;16006:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:8;:34::i;:::-;15999:41;;15918:129;;;:::o;16203:132::-;16260:13;16292:36;16301:7;16292:36;;;;;;;;;;;;;;;;;16320:7;16292:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:8;:36::i;:::-;16285:43;;16203:132;;;:::o;5813:320::-;5982:41;6001:12;:10;:12::i;:::-;6015:7;5982:18;:41::i;:::-;5974:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;6087:39;6101:4;6107:2;6111:7;6120:5;6087:13;:39::i;:::-;5813:320;;;;:::o;1075:46::-;;;;;;;;;;;;;;;;;:::o;18112:2320::-;18168:13;18193:23;;:::i;:::-;18226:266;;;;;;;;;;;;;;;;;:5;18232:1;18226:8;;;;;;;;;;;;;;;;;;:266;;;;18514:21;18527:7;18514:12;:21::i;:::-;18503:5;18509:1;18503:8;;;;;;;;;;;;;;;;;;:32;;;;18546:53;;;;;;;;;;;;;;;;;:5;18552:1;18546:8;;;;;;;;;;;;;;;;;;:53;;;;18621:16;18629:7;18621;:16::i;:::-;18610:5;18616:1;18610:8;;;;;;;;;;;;;;;;;;:27;;;;18648:53;;;;;;;;;;;;;;;;;:5;18654:1;18648:8;;;;;;;;;;;;;;;;;;:53;;;;18723:22;18737:7;18723:13;:22::i;:::-;18712:5;18718:1;18712:8;;;;;;;;;;;;;;;;;;:33;;;;18756:53;;;;;;;;;;;;;;;;;:5;18762:1;18756:8;;;;;;;;;;;;;;;;;;:53;;;;18831:17;18840:7;18831:8;:17::i;:::-;18820:5;18826:1;18820:8;;;;;;;;;;;;;;;;;;:28;;;;18859:54;;;;;;;;;;;;;;;;;:5;18865:1;18859:8;;;;;;;;;;;;;;;;;;:54;;;;18935:20;18947:7;18935:11;:20::i;:::-;18924:5;18930:1;18924:8;;;;;;;;;;;;;;;;;;:31;;;;18966:55;;;;;;;;;;;;;;;;;:5;18972:2;18966:9;;;;;;;;;;;;;;;;;;:55;;;;19044:18;19054:7;19044:9;:18::i;:::-;19032:5;19038:2;19032:9;;;;;;;;;;;;;;;;;;:30;;;;19073:55;;;;;;;;;;;;;;;;;:5;19079:2;19073:9;;;;;;;;;;;;;;;;;;:55;;;;19151:20;19163:7;19151:11;:20::i;:::-;19139:5;19145:2;19139:9;;;;;;;;;;;;;;;;;;:32;;;;19182:55;;;;;;;;;;;;;;;;;:5;19188:2;19182:9;;;;;;;;;;;;;;;;;;:55;;;;19248:14;19265:18;19275:7;19265:9;:18::i;:::-;19248:35;;19306:21;19319:7;19306:12;:21::i;:::-;19294:5;19300:2;19294:9;;;;;;;;;;;;;;;;;;:33;;;;19338:27;;;;;;;;;;;;;;;;;:5;19344:2;19338:9;;;;;;;;;;;;;;;;;;:27;;;;19376:20;19423:5;19429:1;19423:8;;;;;;;;;;;;;;;;;;;19433:5;19439:1;19433:8;;;;;;;;;;;;;;;;;;;19443:5;19449:1;19443:8;;;;;;;;;;;;;;;;;;;19453:5;19459:1;19453:8;;;;;;;;;;;;;;;;;;;19463:5;19469:1;19463:8;;;;;;;;;;;;;;;;;;;19473:5;19479:1;19473:8;;;;;;;;;;;;;;;;;;;19483:5;19489:1;19483:8;;;;;;;;;;;;;;;;;;;19493:5;19499:1;19493:8;;;;;;;;;;;;;;;;;;;19503:5;19509:1;19503:8;;;;;;;;;;;;;;;;;;;19406:106;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19376:137;;19536:1;19526:6;:11;19523:302;;;19585:6;19593:5;19599:1;19593:8;;;;;;;;;;;;;;;;;;;19603:5;19609:2;19603:9;;;;;;;;;;;;;;;;;;;19614:5;19620:2;19614:9;;;;;;;;;;;;;;;;;;;19625:5;19631:2;19625:9;;;;;;;;;;;;;;;;;;;19636:5;19642:2;19636:9;;;;;;;;;;;;;;;;;;;19647:5;19653:2;19647:9;;;;;;;;;;;;;;;;;;;19568:89;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19552:106;;19523:302;;;19721:6;19729:5;19735:1;19729:8;;;;;;;;;;;;;;;;;;;19739:5;19745:2;19739:9;;;;;;;;;;;;;;;;;;;19750:5;19756:2;19750:9;;;;;;;;;;;;;;;;;;;19761:5;19767:2;19761:9;;;;;;;;;;;;;;;;;;;19772:5;19778:2;19772:9;;;;;;;;;;;;;;;;;;;19783:5;19789:2;19783:9;;;;;;;;;;;;;;;;;;;19793:5;19799:2;19793:9;;;;;;;;;;;;;;;;;;;19803:5;19809:2;19803:9;;;;;;;;;;;;;;;;;;;19704:109;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19688:126;;19523:302;19842:18;19863:456;19927:17;19936:7;19927:8;:17::i;:::-;20281:28;20301:6;20281:13;:28::i;:::-;19890:426;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19863:13;:456::i;:::-;19842:477;;20395:4;20345:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;20329:72;;20419:6;20412:13;;;;;;18112:2320;;;:::o;15440:249::-;15504:4;15519:12;15534:61;15575:17;15584:7;15575:8;:17::i;:::-;15548:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;15534:6;:61::i;:::-;15519:76;;15605:11;15619:12;15639;:19;;;;15632:4;:26;;;;:::i;:::-;15619:40;;;;;;;;;;;;;;;;;;;;;;;;15605:54;;15676:6;15669:13;;;;15440:249;;;:::o;16815:497::-;16874:13;16899:17;16920:19;16931:7;16920:10;:19::i;:::-;16899:40;;16958:15;16976:25;16993:7;16976:16;:25::i;:::-;16958:43;;17090:1;17077:9;:14;;:32;;;;;17107:2;17095:9;:14;17077:32;:51;;;;;17127:1;17113:10;:15;17077:51;17074:209;;;17143:11;;;;;;;;;;;;;;;;;;;;;;;17074:209;17188:2;17175:9;:15;:51;;;;17207:1;17195:9;:13;;:30;;;;;17224:1;17212:9;:13;17195:30;17175:51;17174:72;;;;;17245:1;17231:10;:15;17174:72;17171:112;;;17261:11;;;;;;;;;;;;;;;;;;;;;;;17171:112;17293:11;;;;;;;;;;;;;;;;;;;;;16815:497;;;;:::o;4948:162::-;5045:4;5068:18;:25;5087:5;5068:25;;;;;;;;;;;;;;;:35;5094:8;5068:35;;;;;;;;;;;;;;;;;;;;;;;;;5061:42;;4948:162;;;;:::o;1555:101:12:-;832:9;:7;:9::i;:::-;824:18;;;;;;1623:28:::1;1642:8;1623:18;:28::i;:::-;1555:101:::0;:::o;763:155:4:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;7605:125:1:-;7670:4;7721:1;7693:30;;:7;:16;7701:7;7693:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7686:37;;7605:125;;;:::o;587:96:3:-;640:7;666:10;659:17;;587:96;:::o;10887:169:1:-;10988:2;10961:15;:24;10977:7;10961:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11041:7;11037:2;11005:44;;11014:21;11027:7;11014:12;:21::i;:::-;11005:44;;;;;;;;;;;;10887:169;;:::o;7888:342::-;7981:4;8005:16;8013:7;8005;:16::i;:::-;7997:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8080:13;8096:21;8109:7;8096:12;:21::i;:::-;8080:37;;8146:5;8135:16;;:7;:16;;;:51;;;;8179:7;8155:31;;:20;8167:7;8155:11;:20::i;:::-;:31;;;8135:51;:87;;;;8190:32;8207:5;8214:7;8190:16;:32::i;:::-;8135:87;8127:96;;;7888:342;;;;:::o;10219:557::-;10371:4;10346:29;;:21;10359:7;10346:12;:21::i;:::-;:29;;;10338:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;10453:1;10439:16;;:2;:16;;;;10431:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10506:39;10527:4;10533:2;10537:7;10506:20;:39::i;:::-;10607:29;10624:1;10628:7;10607:8;:29::i;:::-;10666:1;10647:9;:15;10657:4;10647:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10694:1;10677:9;:13;10687:2;10677:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10724:2;10705:7;:16;10713:7;10705:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10761:7;10757:2;10742:27;;10751:4;10742:27;;;;;;;;;;;;10219:557;;;:::o;17558:273::-;17616:7;17634:12;17649:61;17690:17;17699:7;17690:8;:17::i;:::-;17663:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;17649:6;:61::i;:::-;17634:76;;17720:14;17744:3;17737:4;:10;;;;:::i;:::-;17720:27;;17770:3;17760:6;:13;17757:50;;17795:1;17788:8;;;;;;17757:50;17823:1;17816:8;;;;17558:273;;;;:::o;16496:313::-;16607:13;16631:12;16646:62;16677:9;16688:17;16697:7;16688:8;:17::i;:::-;16660:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;16646:6;:62::i;:::-;16631:77;;16718:20;16741:11;16760;:18;16753:4;:25;;;;:::i;:::-;16741:38;;;;;;;;;;;;;;;;;;;;;;16718:61;;16796:6;16789:13;;;;16496:313;;;;;:::o;22230:695::-;22286:13;22504:1;22495:5;:10;22491:51;;;22521:10;;;;;;;;;;;;;;;;;;;;;22491:51;22551:12;22566:5;22551:20;;22581:14;22605:75;22620:1;22612:4;:9;22605:75;;22637:8;;;;;:::i;:::-;;;;22667:2;22659:10;;;;;:::i;:::-;;;22605:75;;;22689:19;22721:6;22711:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22689:39;;22738:150;22754:1;22745:5;:10;22738:150;;22781:1;22771:11;;;;;:::i;:::-;;;22847:2;22839:5;:10;;;;:::i;:::-;22826:2;:24;;;;:::i;:::-;22813:39;;22796:6;22803;22796:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;22875:2;22866:11;;;;;:::i;:::-;;;22738:150;;;22911:6;22897:21;;;;;22230:695;;;;:::o;14455:136::-;14515:7;14576:5;14559:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;14549:34;;;;;;14541:43;;14534:50;;14455:136;;;:::o;14995:231::-;15055:7;15074:12;15089:60;15129:17;15138:7;15129:8;:17::i;:::-;15103:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;15089:6;:60::i;:::-;15074:75;;15159:13;15182:8;:15;;;;15175:4;:22;;;;:::i;:::-;15159:38;;15214:5;15207:12;;;;14995:231;;;:::o;2682:96:10:-;2740:7;2770:1;2766;:5;;;;:::i;:::-;2759:12;;2682:96;;;;:::o;8560:108:1:-;8635:26;8645:2;8649:7;8635:26;;;;;;;;;;;;:9;:26::i;:::-;8560:108;;:::o;3049:96:10:-;3107:7;3137:1;3133;:5;;;;:::i;:::-;3126:12;;3049:96;;;;:::o;11191:307:1:-;11341:8;11332:17;;:5;:17;;;;11324:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11427:8;11389:18;:25;11408:5;11389:25;;;;;;;;;;;;;;;:35;11415:8;11389:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11472:8;11450:41;;11465:5;11450:41;;;11482:8;11450:41;;;;;;:::i;:::-;;;;;;;;11191:307;;;:::o;6995:::-;7146:28;7156:4;7162:2;7166:7;7146:9;:28::i;:::-;7192:48;7215:4;7221:2;7225:7;7234:5;7192:22;:48::i;:::-;7184:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6995:307;;;;:::o;363:1557:2:-;421:13;446:11;460:4;:11;446:25;;492:1;485:3;:8;481:23;;;495:9;;;;;;;;;;;;;;;;;481:23;553:18;591:1;586;580:3;:7;;;;:::i;:::-;579:13;;;;:::i;:::-;574:1;:19;;;;:::i;:::-;553:40;;648:19;693:2;680:10;:15;;;;:::i;:::-;670:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;648:48;;707:18;728:5;;;;;;;;;;;;;;;;;707:26;;794:1;787:5;783:13;838:2;830:6;826:15;886:1;855:757;908:3;905:1;902:10;855:757;;;960:1;957;953:9;948:14;;1017:8;1012:1;1006:4;1002:12;996:19;992:34;1095:4;1087:5;1083:2;1079:14;1075:25;1065:8;1061:40;1055:47;1133:3;1130:1;1126:11;1119:18;;1223:4;1214;1206:5;1202:2;1198:14;1194:25;1184:8;1180:40;1174:47;1170:58;1165:3;1161:68;1154:75;;1260:3;1257:1;1253:11;1246:18;;1349:4;1340;1332:5;1329:1;1325:13;1321:24;1311:8;1307:39;1301:46;1297:57;1292:3;1288:67;1281:74;;1386:3;1383:1;1379:11;1372:18;;1467:4;1458;1451:5;1447:16;1437:8;1433:31;1427:38;1423:49;1418:3;1414:59;1407:66;;1506:3;1501;1497:13;1490:20;;1546:3;1535:9;1528:22;1596:1;1585:9;1581:17;1568:30;;930:682;;855:757;;;859:42;1642:1;1637:3;1633:11;1662:1;1657:82;;;;1757:1;1752:80;;;;1626:206;;1657:82;1717:6;1712:3;1708:16;1704:1;1693:9;1689:17;1682:43;1657:82;;1752:80;1812:4;1807:3;1803:14;1799:1;1788:9;1784:17;1777:41;1626:206;;1861:10;1853:6;1846:26;753:1129;;1906:6;1892:21;;;;;;363:1557;;;;:::o;1790:169:12:-;1879:1;1859:22;;:8;:22;;;;1851:31;;;;;;1922:8;1893:38;;1914:6;;;;;;;;;;1893:38;;;;;;;;;;;;1946:8;1937:6;;:17;;;;;;;;;;;;;;;;;;1790:169;:::o;13385:122:1:-;;;;:::o;8889:311::-;9014:18;9020:2;9024:7;9014:5;:18::i;:::-;9063:54;9094:1;9098:2;9102:7;9111:5;9063:22;:54::i;:::-;9042:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8889:311;;;:::o;12051:778::-;12201:4;12221:15;:2;:13;;;:15::i;:::-;12217:606;;;12272:2;12256:36;;;12293:12;:10;:12::i;:::-;12307:4;12313:7;12322:5;12256:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12252:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12512:1;12495:6;:13;:18;12491:266;;;12537:60;;;;;;;;;;:::i;:::-;;;;;;;;12491:266;12709:6;12703:13;12694:6;12690:2;12686:15;12679:38;12252:519;12388:41;;;12378:51;;;:6;:51;;;;12371:58;;;;;12217:606;12808:4;12801:11;;12051:778;;;;;;;:::o;9522:372::-;9615:1;9601:16;;:2;:16;;;;9593:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9673:16;9681:7;9673;:16::i;:::-;9672:17;9664:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9733:45;9762:1;9766:2;9770:7;9733:20;:45::i;:::-;9806:1;9789:9;:13;9799:2;9789:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9836:2;9817:7;:16;9825:7;9817:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9879:7;9875:2;9854:33;;9871:1;9854:33;;;;;;;;;;;;9522:372;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:342:13:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:139::-;;439:6;426:20;417:29;;455:33;482:5;455:33;:::i;:::-;407:87;;;;:::o;500:133::-;;581:6;568:20;559:29;;597:30;621:5;597:30;:::i;:::-;549:84;;;;:::o;639:137::-;;722:6;709:20;700:29;;738:32;764:5;738:32;:::i;:::-;690:86;;;;:::o;782:141::-;;869:6;863:13;854:22;;885:32;911:5;885:32;:::i;:::-;844:79;;;;:::o;942:271::-;;1046:3;1039:4;1031:6;1027:17;1023:27;1013:2;;1064:1;1061;1054:12;1013:2;1104:6;1091:20;1129:78;1203:3;1195:6;1188:4;1180:6;1176:17;1129:78;:::i;:::-;1120:87;;1003:210;;;;;:::o;1219:139::-;;1303:6;1290:20;1281:29;;1319:33;1346:5;1319:33;:::i;:::-;1271:87;;;;:::o;1364:262::-;;1472:2;1460:9;1451:7;1447:23;1443:32;1440:2;;;1488:1;1485;1478:12;1440:2;1531:1;1556:53;1601:7;1592:6;1581:9;1577:22;1556:53;:::i;:::-;1546:63;;1502:117;1430:196;;;;:::o;1632:407::-;;;1757:2;1745:9;1736:7;1732:23;1728:32;1725:2;;;1773:1;1770;1763:12;1725:2;1816:1;1841:53;1886:7;1877:6;1866:9;1862:22;1841:53;:::i;:::-;1831:63;;1787:117;1943:2;1969:53;2014:7;2005:6;1994:9;1990:22;1969:53;:::i;:::-;1959:63;;1914:118;1715:324;;;;;:::o;2045:552::-;;;;2187:2;2175:9;2166:7;2162:23;2158:32;2155:2;;;2203:1;2200;2193:12;2155:2;2246:1;2271:53;2316:7;2307:6;2296:9;2292:22;2271:53;:::i;:::-;2261:63;;2217:117;2373:2;2399:53;2444:7;2435:6;2424:9;2420:22;2399:53;:::i;:::-;2389:63;;2344:118;2501:2;2527:53;2572:7;2563:6;2552:9;2548:22;2527:53;:::i;:::-;2517:63;;2472:118;2145:452;;;;;:::o;2603:809::-;;;;;2771:3;2759:9;2750:7;2746:23;2742:33;2739:2;;;2788:1;2785;2778:12;2739:2;2831:1;2856:53;2901:7;2892:6;2881:9;2877:22;2856:53;:::i;:::-;2846:63;;2802:117;2958:2;2984:53;3029:7;3020:6;3009:9;3005:22;2984:53;:::i;:::-;2974:63;;2929:118;3086:2;3112:53;3157:7;3148:6;3137:9;3133:22;3112:53;:::i;:::-;3102:63;;3057:118;3242:2;3231:9;3227:18;3214:32;3273:18;3265:6;3262:30;3259:2;;;3305:1;3302;3295:12;3259:2;3333:62;3387:7;3378:6;3367:9;3363:22;3333:62;:::i;:::-;3323:72;;3185:220;2729:683;;;;;;;:::o;3418:401::-;;;3540:2;3528:9;3519:7;3515:23;3511:32;3508:2;;;3556:1;3553;3546:12;3508:2;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:50;3794:7;3785:6;3774:9;3770:22;3752:50;:::i;:::-;3742:60;;3697:115;3498:321;;;;;:::o;3825:407::-;;;3950:2;3938:9;3929:7;3925:23;3921:32;3918:2;;;3966:1;3963;3956:12;3918:2;4009:1;4034:53;4079:7;4070:6;4059:9;4055:22;4034:53;:::i;:::-;4024:63;;3980:117;4136:2;4162:53;4207:7;4198:6;4187:9;4183:22;4162:53;:::i;:::-;4152:63;;4107:118;3908:324;;;;;:::o;4238:260::-;;4345:2;4333:9;4324:7;4320:23;4316:32;4313:2;;;4361:1;4358;4351:12;4313:2;4404:1;4429:52;4473:7;4464:6;4453:9;4449:22;4429:52;:::i;:::-;4419:62;;4375:116;4303:195;;;;:::o;4504:282::-;;4622:2;4610:9;4601:7;4597:23;4593:32;4590:2;;;4638:1;4635;4628:12;4590:2;4681:1;4706:63;4761:7;4752:6;4741:9;4737:22;4706:63;:::i;:::-;4696:73;;4652:127;4580:206;;;;:::o;4792:262::-;;4900:2;4888:9;4879:7;4875:23;4871:32;4868:2;;;4916:1;4913;4906:12;4868:2;4959:1;4984:53;5029:7;5020:6;5009:9;5005:22;4984:53;:::i;:::-;4974:63;;4930:117;4858:196;;;;:::o;5060:118::-;5147:24;5165:5;5147:24;:::i;:::-;5142:3;5135:37;5125:53;;:::o;5184:109::-;5265:21;5280:5;5265:21;:::i;:::-;5260:3;5253:34;5243:50;;:::o;5299:360::-;;5413:38;5445:5;5413:38;:::i;:::-;5467:70;5530:6;5525:3;5467:70;:::i;:::-;5460:77;;5546:52;5591:6;5586:3;5579:4;5572:5;5568:16;5546:52;:::i;:::-;5623:29;5645:6;5623:29;:::i;:::-;5618:3;5614:39;5607:46;;5389:270;;;;;:::o;5665:364::-;;5781:39;5814:5;5781:39;:::i;:::-;5836:71;5900:6;5895:3;5836:71;:::i;:::-;5829:78;;5916:52;5961:6;5956:3;5949:4;5942:5;5938:16;5916:52;:::i;:::-;5993:29;6015:6;5993:29;:::i;:::-;5988:3;5984:39;5977:46;;5757:272;;;;;:::o;6035:377::-;;6169:39;6202:5;6169:39;:::i;:::-;6224:89;6306:6;6301:3;6224:89;:::i;:::-;6217:96;;6322:52;6367:6;6362:3;6355:4;6348:5;6344:16;6322:52;:::i;:::-;6399:6;6394:3;6390:16;6383:23;;6145:267;;;;;:::o;6418:337::-;;6599:84;6681:1;6676:3;6599:84;:::i;:::-;6592:91;;6713:7;6709:1;6704:3;6700:11;6693:28;6747:1;6742:3;6738:11;6731:18;;6582:173;;;:::o;6761:333::-;;6942:84;7024:1;7019:3;6942:84;:::i;:::-;6935:91;;7056:3;7052:1;7047:3;7043:11;7036:24;7086:1;7081:3;7077:11;7070:18;;6925:169;;;:::o;7100:382::-;;7263:67;7327:2;7322:3;7263:67;:::i;:::-;7256:74;;7360:34;7356:1;7351:3;7347:11;7340:55;7426:20;7421:2;7416:3;7412:12;7405:42;7473:2;7468:3;7464:12;7457:19;;7246:236;;;:::o;7488:326::-;;7651:67;7715:2;7710:3;7651:67;:::i;:::-;7644:74;;7748:30;7744:1;7739:3;7735:11;7728:51;7805:2;7800:3;7796:12;7789:19;;7634:180;;;:::o;7820:1078::-;;8001:86;8083:3;8078;8001:86;:::i;:::-;7994:93;;8117:66;8113:1;8108:3;8104:11;8097:87;8215:34;8210:2;8205:3;8201:12;8194:56;8281:34;8276:2;8271:3;8267:12;8260:56;8347:34;8342:2;8337:3;8333:12;8326:56;8414:34;8408:3;8403;8399:13;8392:57;8481:34;8475:3;8470;8466:13;8459:57;8548:34;8542:3;8537;8533:13;8526:57;8615:34;8609:3;8604;8600:13;8593:57;8682:34;8676:3;8671;8667:13;8660:57;8749:66;8743:3;8738;8734:13;8727:89;8848:13;8842:3;8837;8833:13;8826:36;8888:3;8883;8879:13;8872:20;;7984:914;;;:::o;8904:368::-;;9067:67;9131:2;9126:3;9067:67;:::i;:::-;9060:74;;9164:34;9160:1;9155:3;9151:11;9144:55;9230:6;9225:2;9220:3;9216:12;9209:28;9263:2;9258:3;9254:12;9247:19;;9050:222;;;:::o;9278:324::-;;9441:67;9505:2;9500:3;9441:67;:::i;:::-;9434:74;;9538:28;9534:1;9529:3;9525:11;9518:49;9593:2;9588:3;9584:12;9577:19;;9424:178;;;:::o;9608:323::-;;9771:67;9835:2;9830:3;9771:67;:::i;:::-;9764:74;;9868:27;9864:1;9859:3;9855:11;9848:48;9922:2;9917:3;9913:12;9906:19;;9754:177;;;:::o;9937:376::-;;10100:67;10164:2;10159:3;10100:67;:::i;:::-;10093:74;;10197:34;10193:1;10188:3;10184:11;10177:55;10263:14;10258:2;10253:3;10249:12;10242:36;10304:2;10299:3;10295:12;10288:19;;10083:230;;;:::o;10319:329::-;;10482:67;10546:2;10541:3;10482:67;:::i;:::-;10475:74;;10579:33;10575:1;10570:3;10566:11;10559:54;10639:2;10634:3;10630:12;10623:19;;10465:183;;;:::o;10654:388::-;;10817:67;10881:2;10876:3;10817:67;:::i;:::-;10810:74;;10914:34;10910:1;10905:3;10901:11;10894:55;10980:26;10975:2;10970:3;10966:12;10959:48;11033:2;11028:3;11024:12;11017:19;;10800:242;;;:::o;11048:374::-;;11211:67;11275:2;11270:3;11211:67;:::i;:::-;11204:74;;11308:34;11304:1;11299:3;11295:11;11288:55;11374:12;11369:2;11364:3;11360:12;11353:34;11413:2;11408:3;11404:12;11397:19;;11194:228;;;:::o;11428:373::-;;11591:67;11655:2;11650:3;11591:67;:::i;:::-;11584:74;;11688:34;11684:1;11679:3;11675:11;11668:55;11754:11;11749:2;11744:3;11740:12;11733:33;11792:2;11787:3;11783:12;11776:19;;11574:227;;;:::o;11807:398::-;;11988:85;12070:2;12065:3;11988:85;:::i;:::-;11981:92;;12103:66;12099:1;12094:3;12090:11;12083:87;12196:2;12191:3;12187:12;12180:19;;11971:234;;;:::o;12211:396::-;;12392:84;12474:1;12469:3;12392:84;:::i;:::-;12385:91;;12506:66;12502:1;12497:3;12493:11;12486:87;12599:1;12594:3;12590:11;12583:18;;12375:232;;;:::o;12613:330::-;;12776:67;12840:2;12835:3;12776:67;:::i;:::-;12769:74;;12873:34;12869:1;12864:3;12860:11;12853:55;12934:2;12929:3;12925:12;12918:19;;12759:184;;;:::o;12949:376::-;;13112:67;13176:2;13171:3;13112:67;:::i;:::-;13105:74;;13209:34;13205:1;13200:3;13196:11;13189:55;13275:14;13270:2;13265:3;13261:12;13254:36;13316:2;13311:3;13307:12;13300:19;;13095:230;;;:::o;13331:333::-;;13512:84;13594:1;13589:3;13512:84;:::i;:::-;13505:91;;13626:3;13622:1;13617:3;13613:11;13606:24;13656:1;13651:3;13647:11;13640:18;;13495:169;;;:::o;13670:373::-;;13833:67;13897:2;13892:3;13833:67;:::i;:::-;13826:74;;13930:34;13926:1;13921:3;13917:11;13910:55;13996:11;13991:2;13986:3;13982:12;13975:33;14034:2;14029:3;14025:12;14018:19;;13816:227;;;:::o;14049:339::-;;14230:84;14312:1;14307:3;14230:84;:::i;:::-;14223:91;;14344:9;14340:1;14335:3;14331:11;14324:30;14380:1;14375:3;14371:11;14364:18;;14213:175;;;:::o;14394:323::-;;14557:67;14621:2;14616:3;14557:67;:::i;:::-;14550:74;;14654:27;14650:1;14645:3;14641:11;14634:48;14708:2;14703:3;14699:12;14692:19;;14540:177;;;:::o;14723:365::-;;14886:67;14950:2;14945:3;14886:67;:::i;:::-;14879:74;;14983:34;14979:1;14974:3;14970:11;14963:55;15049:3;15044:2;15039:3;15035:12;15028:25;15079:2;15074:3;15070:12;15063:19;;14869:219;;;:::o;15094:338::-;;15275:84;15357:1;15352:3;15275:84;:::i;:::-;15268:91;;15389:8;15385:1;15380:3;15376:11;15369:29;15424:1;15419:3;15415:11;15408:18;;15258:174;;;:::o;15438:363::-;;15619:85;15701:2;15696:3;15619:85;:::i;:::-;15612:92;;15734:31;15730:1;15725:3;15721:11;15714:52;15792:2;15787:3;15783:12;15776:19;;15602:199;;;:::o;15807:299::-;;15988:84;16070:1;16065:3;15988:84;:::i;:::-;15981:91;;16098:1;16093:3;16089:11;16082:18;;15971:135;;;:::o;16112:381::-;;16275:67;16339:2;16334:3;16275:67;:::i;:::-;16268:74;;16372:34;16368:1;16363:3;16359:11;16352:55;16438:19;16433:2;16428:3;16424:12;16417:41;16484:2;16479:3;16475:12;16468:19;;16258:235;;;:::o;16499:319::-;;16662:67;16726:2;16721:3;16662:67;:::i;:::-;16655:74;;16759:23;16755:1;16750:3;16746:11;16739:44;16809:2;16804:3;16800:12;16793:19;;16645:173;;;:::o;16824:338::-;;17005:84;17087:1;17082:3;17005:84;:::i;:::-;16998:91;;17119:8;17115:1;17110:3;17106:11;17099:29;17154:1;17149:3;17145:11;17138:18;;16988:174;;;:::o;17168:329::-;;17331:67;17395:2;17390:3;17331:67;:::i;:::-;17324:74;;17428:33;17424:1;17419:3;17415:11;17408:54;17488:2;17483:3;17479:12;17472:19;;17314:183;;;:::o;17503:118::-;17590:24;17608:5;17590:24;:::i;:::-;17585:3;17578:37;17568:53;;:::o;17627:275::-;;17781:95;17872:3;17863:6;17781:95;:::i;:::-;17774:102;;17893:3;17886:10;;17763:139;;;;:::o;17908:435::-;;18110:95;18201:3;18192:6;18110:95;:::i;:::-;18103:102;;18222:95;18313:3;18304:6;18222:95;:::i;:::-;18215:102;;18334:3;18327:10;;18092:251;;;;;:::o;18349:1235::-;;18791:95;18882:3;18873:6;18791:95;:::i;:::-;18784:102;;18903:95;18994:3;18985:6;18903:95;:::i;:::-;18896:102;;19015:95;19106:3;19097:6;19015:95;:::i;:::-;19008:102;;19127:95;19218:3;19209:6;19127:95;:::i;:::-;19120:102;;19239:95;19330:3;19321:6;19239:95;:::i;:::-;19232:102;;19351:95;19442:3;19433:6;19351:95;:::i;:::-;19344:102;;19463:95;19554:3;19545:6;19463:95;:::i;:::-;19456:102;;19575:3;19568:10;;18773:811;;;;;;;;;;:::o;19590:1555::-;;20128:95;20219:3;20210:6;20128:95;:::i;:::-;20121:102;;20240:95;20331:3;20322:6;20240:95;:::i;:::-;20233:102;;20352:95;20443:3;20434:6;20352:95;:::i;:::-;20345:102;;20464:95;20555:3;20546:6;20464:95;:::i;:::-;20457:102;;20576:95;20667:3;20658:6;20576:95;:::i;:::-;20569:102;;20688:95;20779:3;20770:6;20688:95;:::i;:::-;20681:102;;20800:95;20891:3;20882:6;20800:95;:::i;:::-;20793:102;;20912:95;21003:3;20994:6;20912:95;:::i;:::-;20905:102;;21024:95;21115:3;21106:6;21024:95;:::i;:::-;21017:102;;21136:3;21129:10;;20110:1035;;;;;;;;;;;;:::o;21151:701::-;;21454:95;21545:3;21536:6;21454:95;:::i;:::-;21447:102;;21566:148;21710:3;21566:148;:::i;:::-;21559:155;;21731:95;21822:3;21813:6;21731:95;:::i;:::-;21724:102;;21843:3;21836:10;;21436:416;;;;;:::o;21858:541::-;;22113:148;22257:3;22113:148;:::i;:::-;22106:155;;22278:95;22369:3;22360:6;22278:95;:::i;:::-;22271:102;;22390:3;22383:10;;22095:304;;;;:::o;22405:541::-;;22660:148;22804:3;22660:148;:::i;:::-;22653:155;;22825:95;22916:3;22907:6;22825:95;:::i;:::-;22818:102;;22937:3;22930:10;;22642:304;;;;:::o;22952:1233::-;;23457:148;23601:3;23457:148;:::i;:::-;23450:155;;23622:95;23713:3;23704:6;23622:95;:::i;:::-;23615:102;;23734:148;23878:3;23734:148;:::i;:::-;23727:155;;23899:95;23990:3;23981:6;23899:95;:::i;:::-;23892:102;;24011:148;24155:3;24011:148;:::i;:::-;24004:155;;24176:3;24169:10;;23439:746;;;;;:::o;24191:541::-;;24446:148;24590:3;24446:148;:::i;:::-;24439:155;;24611:95;24702:3;24693:6;24611:95;:::i;:::-;24604:102;;24723:3;24716:10;;24428:304;;;;:::o;24738:541::-;;24993:148;25137:3;24993:148;:::i;:::-;24986:155;;25158:95;25249:3;25240:6;25158:95;:::i;:::-;25151:102;;25270:3;25263:10;;24975:304;;;;:::o;25285:541::-;;25540:148;25684:3;25540:148;:::i;:::-;25533:155;;25705:95;25796:3;25787:6;25705:95;:::i;:::-;25698:102;;25817:3;25810:10;;25522:304;;;;:::o;25832:541::-;;26087:148;26231:3;26087:148;:::i;:::-;26080:155;;26252:95;26343:3;26334:6;26252:95;:::i;:::-;26245:102;;26364:3;26357:10;;26069:304;;;;:::o;26379:541::-;;26634:148;26778:3;26634:148;:::i;:::-;26627:155;;26799:95;26890:3;26881:6;26799:95;:::i;:::-;26792:102;;26911:3;26904:10;;26616:304;;;;:::o;26926:222::-;;27057:2;27046:9;27042:18;27034:26;;27070:71;27138:1;27127:9;27123:17;27114:6;27070:71;:::i;:::-;27024:124;;;;:::o;27154:640::-;;27387:3;27376:9;27372:19;27364:27;;27401:71;27469:1;27458:9;27454:17;27445:6;27401:71;:::i;:::-;27482:72;27550:2;27539:9;27535:18;27526:6;27482:72;:::i;:::-;27564;27632:2;27621:9;27617:18;27608:6;27564:72;:::i;:::-;27683:9;27677:4;27673:20;27668:2;27657:9;27653:18;27646:48;27711:76;27782:4;27773:6;27711:76;:::i;:::-;27703:84;;27354:440;;;;;;;:::o;27800:210::-;;27925:2;27914:9;27910:18;27902:26;;27938:65;28000:1;27989:9;27985:17;27976:6;27938:65;:::i;:::-;27892:118;;;;:::o;28016:313::-;;28167:2;28156:9;28152:18;28144:26;;28216:9;28210:4;28206:20;28202:1;28191:9;28187:17;28180:47;28244:78;28317:4;28308:6;28244:78;:::i;:::-;28236:86;;28134:195;;;;:::o;28335:419::-;;28539:2;28528:9;28524:18;28516:26;;28588:9;28582:4;28578:20;28574:1;28563:9;28559:17;28552:47;28616:131;28742:4;28616:131;:::i;:::-;28608:139;;28506:248;;;:::o;28760:419::-;;28964:2;28953:9;28949:18;28941:26;;29013:9;29007:4;29003:20;28999:1;28988:9;28984:17;28977:47;29041:131;29167:4;29041:131;:::i;:::-;29033:139;;28931:248;;;:::o;29185:419::-;;29389:2;29378:9;29374:18;29366:26;;29438:9;29432:4;29428:20;29424:1;29413:9;29409:17;29402:47;29466:131;29592:4;29466:131;:::i;:::-;29458:139;;29356:248;;;:::o;29610:419::-;;29814:2;29803:9;29799:18;29791:26;;29863:9;29857:4;29853:20;29849:1;29838:9;29834:17;29827:47;29891:131;30017:4;29891:131;:::i;:::-;29883:139;;29781:248;;;:::o;30035:419::-;;30239:2;30228:9;30224:18;30216:26;;30288:9;30282:4;30278:20;30274:1;30263:9;30259:17;30252:47;30316:131;30442:4;30316:131;:::i;:::-;30308:139;;30206:248;;;:::o;30460:419::-;;30664:2;30653:9;30649:18;30641:26;;30713:9;30707:4;30703:20;30699:1;30688:9;30684:17;30677:47;30741:131;30867:4;30741:131;:::i;:::-;30733:139;;30631:248;;;:::o;30885:419::-;;31089:2;31078:9;31074:18;31066:26;;31138:9;31132:4;31128:20;31124:1;31113:9;31109:17;31102:47;31166:131;31292:4;31166:131;:::i;:::-;31158:139;;31056:248;;;:::o;31310:419::-;;31514:2;31503:9;31499:18;31491:26;;31563:9;31557:4;31553:20;31549:1;31538:9;31534:17;31527:47;31591:131;31717:4;31591:131;:::i;:::-;31583:139;;31481:248;;;:::o;31735:419::-;;31939:2;31928:9;31924:18;31916:26;;31988:9;31982:4;31978:20;31974:1;31963:9;31959:17;31952:47;32016:131;32142:4;32016:131;:::i;:::-;32008:139;;31906:248;;;:::o;32160:419::-;;32364:2;32353:9;32349:18;32341:26;;32413:9;32407:4;32403:20;32399:1;32388:9;32384:17;32377:47;32441:131;32567:4;32441:131;:::i;:::-;32433:139;;32331:248;;;:::o;32585:419::-;;32789:2;32778:9;32774:18;32766:26;;32838:9;32832:4;32828:20;32824:1;32813:9;32809:17;32802:47;32866:131;32992:4;32866:131;:::i;:::-;32858:139;;32756:248;;;:::o;33010:419::-;;33214:2;33203:9;33199:18;33191:26;;33263:9;33257:4;33253:20;33249:1;33238:9;33234:17;33227:47;33291:131;33417:4;33291:131;:::i;:::-;33283:139;;33181:248;;;:::o;33435:419::-;;33639:2;33628:9;33624:18;33616:26;;33688:9;33682:4;33678:20;33674:1;33663:9;33659:17;33652:47;33716:131;33842:4;33716:131;:::i;:::-;33708:139;;33606:248;;;:::o;33860:419::-;;34064:2;34053:9;34049:18;34041:26;;34113:9;34107:4;34103:20;34099:1;34088:9;34084:17;34077:47;34141:131;34267:4;34141:131;:::i;:::-;34133:139;;34031:248;;;:::o;34285:419::-;;34489:2;34478:9;34474:18;34466:26;;34538:9;34532:4;34528:20;34524:1;34513:9;34509:17;34502:47;34566:131;34692:4;34566:131;:::i;:::-;34558:139;;34456:248;;;:::o;34710:419::-;;34914:2;34903:9;34899:18;34891:26;;34963:9;34957:4;34953:20;34949:1;34938:9;34934:17;34927:47;34991:131;35117:4;34991:131;:::i;:::-;34983:139;;34881:248;;;:::o;35135:419::-;;35339:2;35328:9;35324:18;35316:26;;35388:9;35382:4;35378:20;35374:1;35363:9;35359:17;35352:47;35416:131;35542:4;35416:131;:::i;:::-;35408:139;;35306:248;;;:::o;35560:419::-;;35764:2;35753:9;35749:18;35741:26;;35813:9;35807:4;35803:20;35799:1;35788:9;35784:17;35777:47;35841:131;35967:4;35841:131;:::i;:::-;35833:139;;35731:248;;;:::o;35985:222::-;;36116:2;36105:9;36101:18;36093:26;;36129:71;36197:1;36186:9;36182:17;36173:6;36129:71;:::i;:::-;36083:124;;;;:::o;36213:283::-;;36279:2;36273:9;36263:19;;36321:4;36313:6;36309:17;36428:6;36416:10;36413:22;36392:18;36380:10;36377:34;36374:62;36371:2;;;36439:18;;:::i;:::-;36371:2;36479:10;36475:2;36468:22;36253:243;;;;:::o;36502:331::-;;36653:18;36645:6;36642:30;36639:2;;;36675:18;;:::i;:::-;36639:2;36760:4;36756:9;36749:4;36741:6;36737:17;36733:33;36725:41;;36821:4;36815;36811:15;36803:23;;36568:265;;;:::o;36839:98::-;;36924:5;36918:12;36908:22;;36897:40;;;:::o;36943:99::-;;37029:5;37023:12;37013:22;;37002:40;;;:::o;37048:168::-;;37165:6;37160:3;37153:19;37205:4;37200:3;37196:14;37181:29;;37143:73;;;;:::o;37222:169::-;;37340:6;37335:3;37328:19;37380:4;37375:3;37371:14;37356:29;;37318:73;;;;:::o;37397:148::-;;37536:3;37521:18;;37511:34;;;;:::o;37551:305::-;;37610:20;37628:1;37610:20;:::i;:::-;37605:25;;37644:20;37662:1;37644:20;:::i;:::-;37639:25;;37798:1;37730:66;37726:74;37723:1;37720:81;37717:2;;;37804:18;;:::i;:::-;37717:2;37848:1;37845;37841:9;37834:16;;37595:261;;;;:::o;37862:185::-;;37919:20;37937:1;37919:20;:::i;:::-;37914:25;;37953:20;37971:1;37953:20;:::i;:::-;37948:25;;37992:1;37982:2;;37997:18;;:::i;:::-;37982:2;38039:1;38036;38032:9;38027:14;;37904:143;;;;:::o;38053:348::-;;38116:20;38134:1;38116:20;:::i;:::-;38111:25;;38150:20;38168:1;38150:20;:::i;:::-;38145:25;;38338:1;38270:66;38266:74;38263:1;38260:81;38255:1;38248:9;38241:17;38237:105;38234:2;;;38345:18;;:::i;:::-;38234:2;38393:1;38390;38386:9;38375:20;;38101:300;;;;:::o;38407:191::-;;38467:20;38485:1;38467:20;:::i;:::-;38462:25;;38501:20;38519:1;38501:20;:::i;:::-;38496:25;;38540:1;38537;38534:8;38531:2;;;38545:18;;:::i;:::-;38531:2;38590:1;38587;38583:9;38575:17;;38452:146;;;;:::o;38604:96::-;;38670:24;38688:5;38670:24;:::i;:::-;38659:35;;38649:51;;;:::o;38706:90::-;;38783:5;38776:13;38769:21;38758:32;;38748:48;;;:::o;38802:149::-;;38878:66;38871:5;38867:78;38856:89;;38846:105;;;:::o;38957:126::-;;39034:42;39027:5;39023:54;39012:65;;39002:81;;;:::o;39089:77::-;;39155:5;39144:16;;39134:32;;;:::o;39172:154::-;39256:6;39251:3;39246;39233:30;39318:1;39309:6;39304:3;39300:16;39293:27;39223:103;;;:::o;39332:307::-;39400:1;39410:113;39424:6;39421:1;39418:13;39410:113;;;39509:1;39504:3;39500:11;39494:18;39490:1;39485:3;39481:11;39474:39;39446:2;39443:1;39439:10;39434:15;;39410:113;;;39541:6;39538:1;39535:13;39532:2;;;39621:1;39612:6;39607:3;39603:16;39596:27;39532:2;39381:258;;;;:::o;39645:320::-;;39726:1;39720:4;39716:12;39706:22;;39773:1;39767:4;39763:12;39794:18;39784:2;;39850:4;39842:6;39838:17;39828:27;;39784:2;39912;39904:6;39901:14;39881:18;39878:38;39875:2;;;39931:18;;:::i;:::-;39875:2;39696:269;;;;:::o;39971:233::-;;40033:24;40051:5;40033:24;:::i;:::-;40024:33;;40079:66;40072:5;40069:77;40066:2;;;40149:18;;:::i;:::-;40066:2;40196:1;40189:5;40185:13;40178:20;;40014:190;;;:::o;40210:176::-;;40259:20;40277:1;40259:20;:::i;:::-;40254:25;;40293:20;40311:1;40293:20;:::i;:::-;40288:25;;40332:1;40322:2;;40337:18;;:::i;:::-;40322:2;40378:1;40375;40371:9;40366:14;;40244:142;;;;:::o;40392:180::-;40440:77;40437:1;40430:88;40537:4;40534:1;40527:15;40561:4;40558:1;40551:15;40578:180;40626:77;40623:1;40616:88;40723:4;40720:1;40713:15;40747:4;40744:1;40737:15;40764:180;40812:77;40809:1;40802:88;40909:4;40906:1;40899:15;40933:4;40930:1;40923:15;40950:180;40998:77;40995:1;40988:88;41095:4;41092:1;41085:15;41119:4;41116:1;41109:15;41136:102;;41228:2;41224:7;41219:2;41212:5;41208:14;41204:28;41194:38;;41184:54;;;:::o;41244:122::-;41317:24;41335:5;41317:24;:::i;:::-;41310:5;41307:35;41297:2;;41356:1;41353;41346:12;41297:2;41287:79;:::o;41372:116::-;41442:21;41457:5;41442:21;:::i;:::-;41435:5;41432:32;41422:2;;41478:1;41475;41468:12;41422:2;41412:76;:::o;41494:120::-;41566:23;41583:5;41566:23;:::i;:::-;41559:5;41556:34;41546:2;;41604:1;41601;41594:12;41546:2;41536:78;:::o;41620:122::-;41693:24;41711:5;41693:24;:::i;:::-;41686:5;41683:35;41673:2;;41732:1;41729;41722:12;41673:2;41663:79;:::o

Swarm Source

ipfs://3d2af5faaea75e4440bc37580d0bd820ff1679fff9b93e8bb3bdad01f537d744
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.