ETH Price: $2,861.41 (-9.61%)
Gas: 9 Gwei

Token

TradFiLines-C (TFL-C)
 

Overview

Max Total Supply

311 TFL-C

Holders

128

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hitman321.eth
Balance
2 TFL-C
0xF90aEd05e644aA4C22FdE7990442C7023E3618AB
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:
TradFiLinesColorWithClaim

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Ownable.sol";
import "./ERC721Enumerable.sol";
import "./BokkyPooBahsDateTimeLibrary.sol";
import "./OperatorFilterer.sol";
import "./ERC2981.sol";

interface TradFiRendererColor {
    function renderFromSeed(uint256 seed, uint256 colorSeed, uint256 extraCount, uint256 tokenId, uint256 place) external view returns(string memory svg);
}

interface TradFiLines {
    function ownerOf(uint256 tokenId) external view returns(address);
    function isApprovedForAll(address owner, address operator) external view returns (bool);
    function safeTransferFrom(address from, address to, uint256 tokenId) external;
    function tokenIdToSeed(uint256 seed) external view returns(uint256);
    function tokenIdToCount(uint256 seed) external view returns(uint256);
}

interface TradFiRenderer {
    function renderFromSeed(uint256 seed, uint256 extraCount, uint256 tokenId) external view returns(string memory svg);
}

contract TradFiLinesColorWithClaim is ERC721, ERC721Enumerable, Ownable, ERC2981, OperatorFilterer {
    using BokkyPooBahsDateTimeLibrary for uint;
    mapping (uint => uint) public tokenIdToCount;
    mapping (uint => uint) public tokenIdToSeed;
    mapping (uint => uint) public colorTokenIdToSeed;
    mapping (uint => uint) public tokenIdToPlacement;
    mapping (uint => uint) public dayToPlace;
    mapping (uint => string) public btcAddresses;
    mapping (uint => bool) public classicMode;
    address public tradFiRenderer;
    TradFiRenderer public tfr;
    TradFiLines public tfl;
    TradFiRendererColor public tfrc;
    bool public operatorFilteringEnabled;
    bool public renderersLocked = false;

    constructor(address tradFiRenderer, address tradFiLines, address tradFiRendererColor) ERC721("TradFiLines-C", "TFL-C") {
        tfr = TradFiRenderer(tradFiRenderer);
        tfl = TradFiLines(tradFiLines);
        tfrc = TradFiRendererColor(tradFiRendererColor);
        _registerForOperatorFiltering();
        operatorFilteringEnabled = true;
        _setDefaultRoyalty(msg.sender, 500);
    }

    function swapTFR(address tradFiRenderer) public onlyOwner {
        require(!renderersLocked, "Can't swap renderers anymore");
        tfr = TradFiRenderer(tradFiRenderer);
    }

    function swapTFRC(address tradFiRendererColor) public onlyOwner {
        require(!renderersLocked, "Can't swap renderers anymore");
        tfrc = TradFiRendererColor(tradFiRendererColor);
    }

    function lockRenderers() public onlyOwner {
        renderersLocked = true;
    }

    function onERC721Received(
        address,
        address,
        uint256,
        bytes memory
    ) public virtual returns (bytes4) {
        return this.onERC721Received.selector;
    }

    bool public isDST = false;
    uint public hoursToSub = 5;
    function adjustDST() external {
        uint timestamp = subHours(block.timestamp, hoursToSub);
        uint month = BokkyPooBahsDateTimeLibrary.getMonth(timestamp);
        if(month > 3 && month < 11) {
            isDST = true;
        } else {
            uint day = BokkyPooBahsDateTimeLibrary.getDayOfWeek(timestamp);
            uint dayOfMonth = BokkyPooBahsDateTimeLibrary.getDay(timestamp);
            if(month == 3) {
                if(dayOfMonth > 14) {
                    isDST = true;
                } else if(dayOfMonth < 8) {
                    isDST = false;
                } else {
                    if((dayOfMonth - day - 7) < 1) {
                        isDST = false;
                    } else {
                        isDST = true;
                    }
                }
            }
            if(month == 11) {
                if(dayOfMonth > 7) {
                    isDST = false;
                } else {
                    if((dayOfMonth - day) < 1) {
                        isDST = true;
                    } else {
                        isDST = false;
                    }
                }
            }
        }
        if(isDST) {
            hoursToSub = 4;
        } else {
            hoursToSub = 5;
        }
    }

    function transferFrom(address from, address to, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

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

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        require(isWithinOpeningHours(), "Outside regular trading hours");
        tokenIdToCount[tokenId] += 1;
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function setApprovalForAll(address operator, bool approved) public override(ERC721, IERC721) onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }
    
    function approve(address operator, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function setDefaultRoyalty(address receiver, uint96 feeNumerator) public onlyOwner {
        _setDefaultRoyalty(receiver, feeNumerator);
    }    

    function setOperatorFilteringEnabled(bool value) public onlyOwner {
        operatorFilteringEnabled = value;
    }

    function _operatorFilteringEnabled() internal view override returns (bool) {
        return operatorFilteringEnabled;
    }

    function getAdjustedTimestamp() public view returns(uint timestamp) {
        return subHours(block.timestamp, hoursToSub);
    } 
    function isWithinOpeningHours() public view returns(bool){
        uint timestamp = getAdjustedTimestamp();
        bool weekend = BokkyPooBahsDateTimeLibrary.isWeekEnd(timestamp);
        if(weekend) {
           return false;
        }

        uint hour = BokkyPooBahsDateTimeLibrary.getHour(timestamp);
        uint minute = BokkyPooBahsDateTimeLibrary.getMinute(timestamp);

        if(hour < 9 || hour > 15) {
            return false;
        }

        if(hour == 9 && minute < 30) {
            return false;
        }

        return true;
    }
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable, ERC2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
   
    function subHours(uint timestamp, uint _hours) public pure returns (uint newTimestamp) {
        newTimestamp = BokkyPooBahsDateTimeLibrary.subHours(timestamp, _hours);
    }

    receive() external payable {}
    
    function wrapClaim(uint tokenToWrap, string memory btcAddress) external {
        require(tfl.ownerOf(tokenToWrap) == msg.sender,"Sender is not the owner of the NFT.");
        uint timestamp = getAdjustedTimestamp();
        uint year;
        uint month;
        uint day;
        (year, month, day, , , ) = BokkyPooBahsDateTimeLibrary.timestampToDateTime(timestamp);
        tokenIdToCount[tokenToWrap] = tfl.tokenIdToCount(tokenToWrap);
        tfl.safeTransferFrom(msg.sender, address(this), tokenToWrap);
        colorTokenIdToSeed[tokenToWrap] = uint(keccak256(abi.encodePacked(blockhash(block.number-1))));
        uint place = dayToPlace[day + month * 100 + year * 10000] += 1;
        tokenIdToPlacement[tokenToWrap] = place;
        _mint(msg.sender, tokenToWrap);
        btcAddresses[tokenToWrap] = btcAddress;
    }

     function toggleClassicMode(uint tokenId, bool on) external {
        require(ownerOf(tokenId) == msg.sender,"Sender is not the owner of the NFT.");
        classicMode[tokenId] = on;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        ); 
        uint256 seed = tfl.tokenIdToSeed(_tokenId);
        uint256 colorSeed = colorTokenIdToSeed[_tokenId];
        if(classicMode[_tokenId]){
            return
                string(
                    abi.encodePacked(
                        tfr.renderFromSeed(seed, tokenIdToCount[_tokenId], _tokenId)
                    )
                );
        }

        return
            string(
                abi.encodePacked(
                    tfrc.renderFromSeed(seed, colorSeed, tokenIdToCount[_tokenId], _tokenId, tokenIdToPlacement[_tokenId])
                )
            );
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 17: BokkyPooBahsDateTimeLibrary.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.9.0;

// ----------------------------------------------------------------------------
// BokkyPooBah's DateTime Library v1.01
//
// A gas-efficient Solidity date and time library
//
// https://github.com/bokkypoobah/BokkyPooBahsDateTimeLibrary
//
// Tested date range 1970/01/01 to 2345/12/31
//
// Conventions:
// Unit      | Range         | Notes
// :-------- |:-------------:|:-----
// timestamp | >= 0          | Unix timestamp, number of seconds since 1970/01/01 00:00:00 UTC
// year      | 1970 ... 2345 |
// month     | 1 ... 12      |
// day       | 1 ... 31      |
// hour      | 0 ... 23      |
// minute    | 0 ... 59      |
// second    | 0 ... 59      |
// dayOfWeek | 1 ... 7       | 1 = Monday, ..., 7 = Sunday
//
//
// Enjoy. (c) BokkyPooBah / Bok Consulting Pty Ltd 2018-2019. The MIT Licence.
// ----------------------------------------------------------------------------

library BokkyPooBahsDateTimeLibrary {

    uint constant SECONDS_PER_DAY = 24 * 60 * 60;
    uint constant SECONDS_PER_HOUR = 60 * 60;
    uint constant SECONDS_PER_MINUTE = 60;
    int constant OFFSET19700101 = 2440588;

    uint constant DOW_MON = 1;
    uint constant DOW_TUE = 2;
    uint constant DOW_WED = 3;
    uint constant DOW_THU = 4;
    uint constant DOW_FRI = 5;
    uint constant DOW_SAT = 6;
    uint constant DOW_SUN = 7;

    // ------------------------------------------------------------------------
    // Calculate the number of days from 1970/01/01 to year/month/day using
    // the date conversion algorithm from
    //   https://aa.usno.navy.mil/faq/JD_formula.html
    // and subtracting the offset 2440588 so that 1970/01/01 is day 0
    //
    // days = day
    //      - 32075
    //      + 1461 * (year + 4800 + (month - 14) / 12) / 4
    //      + 367 * (month - 2 - (month - 14) / 12 * 12) / 12
    //      - 3 * ((year + 4900 + (month - 14) / 12) / 100) / 4
    //      - offset
    // ------------------------------------------------------------------------
    function _daysFromDate(uint year, uint month, uint day) internal pure returns (uint _days) {
        require(year >= 1970);
        int _year = int(year);
        int _month = int(month);
        int _day = int(day);

        int __days = _day
          - 32075
          + 1461 * (_year + 4800 + (_month - 14) / 12) / 4
          + 367 * (_month - 2 - (_month - 14) / 12 * 12) / 12
          - 3 * ((_year + 4900 + (_month - 14) / 12) / 100) / 4
          - OFFSET19700101;

        _days = uint(__days);
    }

    // ------------------------------------------------------------------------
    // Calculate year/month/day from the number of days since 1970/01/01 using
    // the date conversion algorithm from
    //   http://aa.usno.navy.mil/faq/docs/JD_Formula.php
    // and adding the offset 2440588 so that 1970/01/01 is day 0
    //
    // int L = days + 68569 + offset
    // int N = 4 * L / 146097
    // L = L - (146097 * N + 3) / 4
    // year = 4000 * (L + 1) / 1461001
    // L = L - 1461 * year / 4 + 31
    // month = 80 * L / 2447
    // dd = L - 2447 * month / 80
    // L = month / 11
    // month = month + 2 - 12 * L
    // year = 100 * (N - 49) + year + L
    // ------------------------------------------------------------------------
    function _daysToDate(uint _days) internal pure returns (uint year, uint month, uint day) {
        int __days = int(_days);

        int L = __days + 68569 + OFFSET19700101;
        int N = 4 * L / 146097;
        L = L - (146097 * N + 3) / 4;
        int _year = 4000 * (L + 1) / 1461001;
        L = L - 1461 * _year / 4 + 31;
        int _month = 80 * L / 2447;
        int _day = L - 2447 * _month / 80;
        L = _month / 11;
        _month = _month + 2 - 12 * L;
        _year = 100 * (N - 49) + _year + L;

        year = uint(_year);
        month = uint(_month);
        day = uint(_day);
    }

    function timestampFromDate(uint year, uint month, uint day) internal pure returns (uint timestamp) {
        timestamp = _daysFromDate(year, month, day) * SECONDS_PER_DAY;
    }
    function timestampFromDateTime(uint year, uint month, uint day, uint hour, uint minute, uint second) internal pure returns (uint timestamp) {
        timestamp = _daysFromDate(year, month, day) * SECONDS_PER_DAY + hour * SECONDS_PER_HOUR + minute * SECONDS_PER_MINUTE + second;
    }
    function timestampToDate(uint timestamp) internal pure returns (uint year, uint month, uint day) {
        (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
    }
    function timestampToDateTime(uint timestamp) internal pure returns (uint year, uint month, uint day, uint hour, uint minute, uint second) {
        (year, month, day) = _daysToDate(timestamp / SECONDS_PER_DAY);
        uint secs = timestamp % SECONDS_PER_DAY;
        hour = secs / SECONDS_PER_HOUR;
        secs = secs % SECONDS_PER_HOUR;
        minute = secs / SECONDS_PER_MINUTE;
        second = secs % SECONDS_PER_MINUTE;
    }

    function isValidDate(uint year, uint month, uint day) internal pure returns (bool valid) {
        if (year >= 1970 && month > 0 && month <= 12) {
            uint daysInMonth = _getDaysInMonth(year, month);
            if (day > 0 && day <= daysInMonth) {
                valid = true;
            }
        }
    }
    function isValidDateTime(uint year, uint month, uint day, uint hour, uint minute, uint second) internal pure returns (bool valid) {
        if (isValidDate(year, month, day)) {
            if (hour < 24 && minute < 60 && second < 60) {
                valid = true;
            }
        }
    }
    function isLeapYear(uint timestamp) internal pure returns (bool leapYear) {
        (uint year,,) = _daysToDate(timestamp / SECONDS_PER_DAY);
        leapYear = _isLeapYear(year);
    }
    function _isLeapYear(uint year) internal pure returns (bool leapYear) {
        leapYear = ((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0);
    }
    function isWeekDay(uint timestamp) internal pure returns (bool weekDay) {
        weekDay = getDayOfWeek(timestamp) <= DOW_FRI;
    }
    function isWeekEnd(uint timestamp) internal pure returns (bool weekEnd) {
        weekEnd = getDayOfWeek(timestamp) >= DOW_SAT;
    }
    function getDaysInMonth(uint timestamp) internal pure returns (uint daysInMonth) {
        (uint year, uint month,) = _daysToDate(timestamp / SECONDS_PER_DAY);
        daysInMonth = _getDaysInMonth(year, month);
    }
    function _getDaysInMonth(uint year, uint month) internal pure returns (uint daysInMonth) {
        if (month == 1 || month == 3 || month == 5 || month == 7 || month == 8 || month == 10 || month == 12) {
            daysInMonth = 31;
        } else if (month != 2) {
            daysInMonth = 30;
        } else {
            daysInMonth = _isLeapYear(year) ? 29 : 28;
        }
    }
    // 1 = Monday, 7 = Sunday
    function getDayOfWeek(uint timestamp) internal pure returns (uint dayOfWeek) {
        uint _days = timestamp / SECONDS_PER_DAY;
        dayOfWeek = (_days + 3) % 7 + 1;
    }

    function getYear(uint timestamp) internal pure returns (uint year) {
        (year,,) = _daysToDate(timestamp / SECONDS_PER_DAY);
    }
    function getMonth(uint timestamp) internal pure returns (uint month) {
        (,month,) = _daysToDate(timestamp / SECONDS_PER_DAY);
    }
    function getDay(uint timestamp) internal pure returns (uint day) {
        (,,day) = _daysToDate(timestamp / SECONDS_PER_DAY);
    }
    function getHour(uint timestamp) internal pure returns (uint hour) {
        uint secs = timestamp % SECONDS_PER_DAY;
        hour = secs / SECONDS_PER_HOUR;
    }
    function getMinute(uint timestamp) internal pure returns (uint minute) {
        uint secs = timestamp % SECONDS_PER_HOUR;
        minute = secs / SECONDS_PER_MINUTE;
    }
    function getSecond(uint timestamp) internal pure returns (uint second) {
        second = timestamp % SECONDS_PER_MINUTE;
    }

    function addYears(uint timestamp, uint _years) internal pure returns (uint newTimestamp) {
        (uint year, uint month, uint day) = _daysToDate(timestamp / SECONDS_PER_DAY);
        year += _years;
        uint daysInMonth = _getDaysInMonth(year, month);
        if (day > daysInMonth) {
            day = daysInMonth;
        }
        newTimestamp = _daysFromDate(year, month, day) * SECONDS_PER_DAY + timestamp % SECONDS_PER_DAY;
        require(newTimestamp >= timestamp);
    }
    function addMonths(uint timestamp, uint _months) internal pure returns (uint newTimestamp) {
        (uint year, uint month, uint day) = _daysToDate(timestamp / SECONDS_PER_DAY);
        month += _months;
        year += (month - 1) / 12;
        month = (month - 1) % 12 + 1;
        uint daysInMonth = _getDaysInMonth(year, month);
        if (day > daysInMonth) {
            day = daysInMonth;
        }
        newTimestamp = _daysFromDate(year, month, day) * SECONDS_PER_DAY + timestamp % SECONDS_PER_DAY;
        require(newTimestamp >= timestamp);
    }
    function addDays(uint timestamp, uint _days) internal pure returns (uint newTimestamp) {
        newTimestamp = timestamp + _days * SECONDS_PER_DAY;
        require(newTimestamp >= timestamp);
    }
    function addHours(uint timestamp, uint _hours) internal pure returns (uint newTimestamp) {
        newTimestamp = timestamp + _hours * SECONDS_PER_HOUR;
        require(newTimestamp >= timestamp);
    }
    function addMinutes(uint timestamp, uint _minutes) internal pure returns (uint newTimestamp) {
        newTimestamp = timestamp + _minutes * SECONDS_PER_MINUTE;
        require(newTimestamp >= timestamp);
    }
    function addSeconds(uint timestamp, uint _seconds) internal pure returns (uint newTimestamp) {
        newTimestamp = timestamp + _seconds;
        require(newTimestamp >= timestamp);
    }

    function subYears(uint timestamp, uint _years) internal pure returns (uint newTimestamp) {
        (uint year, uint month, uint day) = _daysToDate(timestamp / SECONDS_PER_DAY);
        year -= _years;
        uint daysInMonth = _getDaysInMonth(year, month);
        if (day > daysInMonth) {
            day = daysInMonth;
        }
        newTimestamp = _daysFromDate(year, month, day) * SECONDS_PER_DAY + timestamp % SECONDS_PER_DAY;
        require(newTimestamp <= timestamp);
    }
    function subMonths(uint timestamp, uint _months) internal pure returns (uint newTimestamp) {
        (uint year, uint month, uint day) = _daysToDate(timestamp / SECONDS_PER_DAY);
        uint yearMonth = year * 12 + (month - 1) - _months;
        year = yearMonth / 12;
        month = yearMonth % 12 + 1;
        uint daysInMonth = _getDaysInMonth(year, month);
        if (day > daysInMonth) {
            day = daysInMonth;
        }
        newTimestamp = _daysFromDate(year, month, day) * SECONDS_PER_DAY + timestamp % SECONDS_PER_DAY;
        require(newTimestamp <= timestamp);
    }
    function subDays(uint timestamp, uint _days) internal pure returns (uint newTimestamp) {
        newTimestamp = timestamp - _days * SECONDS_PER_DAY;
        require(newTimestamp <= timestamp);
    }
    function subHours(uint timestamp, uint _hours) internal pure returns (uint newTimestamp) {
        newTimestamp = timestamp - _hours * SECONDS_PER_HOUR;
        require(newTimestamp <= timestamp);
    }
    function subMinutes(uint timestamp, uint _minutes) internal pure returns (uint newTimestamp) {
        newTimestamp = timestamp - _minutes * SECONDS_PER_MINUTE;
        require(newTimestamp <= timestamp);
    }
    function subSeconds(uint timestamp, uint _seconds) internal pure returns (uint newTimestamp) {
        newTimestamp = timestamp - _seconds;
        require(newTimestamp <= timestamp);
    }

    function diffYears(uint fromTimestamp, uint toTimestamp) internal pure returns (uint _years) {
        require(fromTimestamp <= toTimestamp);
        (uint fromYear,,) = _daysToDate(fromTimestamp / SECONDS_PER_DAY);
        (uint toYear,,) = _daysToDate(toTimestamp / SECONDS_PER_DAY);
        _years = toYear - fromYear;
    }
    function diffMonths(uint fromTimestamp, uint toTimestamp) internal pure returns (uint _months) {
        require(fromTimestamp <= toTimestamp);
        (uint fromYear, uint fromMonth,) = _daysToDate(fromTimestamp / SECONDS_PER_DAY);
        (uint toYear, uint toMonth,) = _daysToDate(toTimestamp / SECONDS_PER_DAY);
        _months = toYear * 12 + toMonth - fromYear * 12 - fromMonth;
    }
    function diffDays(uint fromTimestamp, uint toTimestamp) internal pure returns (uint _days) {
        require(fromTimestamp <= toTimestamp);
        _days = (toTimestamp - fromTimestamp) / SECONDS_PER_DAY;
    }
    function diffHours(uint fromTimestamp, uint toTimestamp) internal pure returns (uint _hours) {
        require(fromTimestamp <= toTimestamp);
        _hours = (toTimestamp - fromTimestamp) / SECONDS_PER_HOUR;
    }
    function diffMinutes(uint fromTimestamp, uint toTimestamp) internal pure returns (uint _minutes) {
        require(fromTimestamp <= toTimestamp);
        _minutes = (toTimestamp - fromTimestamp) / SECONDS_PER_MINUTE;
    }
    function diffSeconds(uint fromTimestamp, uint toTimestamp) internal pure returns (uint _seconds) {
        require(fromTimestamp <= toTimestamp);
        _seconds = toTimestamp - fromTimestamp;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

import "./IERC2981.sol";
import "./ERC165.sol";

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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

File 9 of 17: IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 14 of 17: OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @notice Optimized and flexible operator filterer to abide to OpenSea's
/// mandatory on-chain royalty enforcement in order for new collections to
/// receive royalties.
/// For more information, see:
/// See: https://github.com/ProjectOpenSea/operator-filter-registry
abstract contract OperatorFilterer {
    /// @dev The default OpenSea operator blocklist subscription.
    address internal constant _DEFAULT_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;

    /// @dev The OpenSea operator filter registry.
    address internal constant _OPERATOR_FILTER_REGISTRY = 0x000000000000AAeB6D7670E522A718067333cd4E;

    /// @dev Registers the current contract to OpenSea's operator filter,
    /// and subscribe to the default OpenSea operator blocklist.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering() internal virtual {
        _registerForOperatorFiltering(_DEFAULT_SUBSCRIPTION, true);
    }

    /// @dev Registers the current contract to OpenSea's operator filter.
    /// Note: Will not revert nor update existing settings for repeated registration.
    function _registerForOperatorFiltering(address subscriptionOrRegistrantToCopy, bool subscribe)
        internal
        virtual
    {
        /// @solidity memory-safe-assembly
        assembly {
            let functionSelector := 0x7d3e3dbe // `registerAndSubscribe(address,address)`.

            // Clean the upper 96 bits of `subscriptionOrRegistrantToCopy` in case they are dirty.
            subscriptionOrRegistrantToCopy := shr(96, shl(96, subscriptionOrRegistrantToCopy))

            for {} iszero(subscribe) {} {
                if iszero(subscriptionOrRegistrantToCopy) {
                    functionSelector := 0x4420e486 // `register(address)`.
                    break
                }
                functionSelector := 0xa0af2903 // `registerAndCopyEntries(address,address)`.
                break
            }
            // Store the function selector.
            mstore(0x00, shl(224, functionSelector))
            // Store the `address(this)`.
            mstore(0x04, address())
            // Store the `subscriptionOrRegistrantToCopy`.
            mstore(0x24, subscriptionOrRegistrantToCopy)
            // Register into the registry.
            if iszero(call(gas(), _OPERATOR_FILTER_REGISTRY, 0, 0x00, 0x44, 0x00, 0x04)) {
                // If the function selector has not been overwritten,
                // it is an out-of-gas error.
                if eq(shr(224, mload(0x00)), functionSelector) {
                    // To prevent gas under-estimation.
                    revert(0, 0)
                }
            }
            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, because of Solidity's memory size limits.
            mstore(0x24, 0)
        }
    }

    /// @dev Modifier to guard a function and revert if the caller is a blocked operator.
    modifier onlyAllowedOperator(address from) virtual {
        if (from != msg.sender) {
            if (!_isPriorityOperator(msg.sender)) {
                if (_operatorFilteringEnabled()) _revertIfBlocked(msg.sender);
            }
        }
        _;
    }

    /// @dev Modifier to guard a function from approving a blocked operator..
    modifier onlyAllowedOperatorApproval(address operator) virtual {
        if (!_isPriorityOperator(operator)) {
            if (_operatorFilteringEnabled()) _revertIfBlocked(operator);
        }
        _;
    }

    /// @dev Helper function that reverts if the `operator` is blocked by the registry.
    function _revertIfBlocked(address operator) private view {
        /// @solidity memory-safe-assembly
        assembly {
            // Store the function selector of `isOperatorAllowed(address,address)`,
            // shifted left by 6 bytes, which is enough for 8tb of memory.
            // We waste 6-3 = 3 bytes to save on 6 runtime gas (PUSH1 0x224 SHL).
            mstore(0x00, 0xc6171134001122334455)
            // Store the `address(this)`.
            mstore(0x1a, address())
            // Store the `operator`.
            mstore(0x3a, operator)

            // `isOperatorAllowed` always returns true if it does not revert.
            if iszero(staticcall(gas(), _OPERATOR_FILTER_REGISTRY, 0x16, 0x44, 0x00, 0x00)) {
                // Bubble up the revert if the staticcall reverts.
                returndatacopy(0x00, 0x00, returndatasize())
                revert(0x00, returndatasize())
            }

            // We'll skip checking if `from` is inside the blacklist.
            // Even though that can block transferring out of wrapper contracts,
            // we don't want tokens to be stuck.

            // Restore the part of the free memory pointer that was overwritten,
            // which is guaranteed to be zero, if less than 8tb of memory is used.
            mstore(0x3a, 0)
        }
    }

    /// @dev For deriving contracts to override, so that operator filtering
    /// can be turned on / off.
    /// Returns true by default.
    function _operatorFilteringEnabled() internal view virtual returns (bool) {
        return true;
    }

    /// @dev For deriving contracts to override, so that preferred marketplaces can
    /// skip operator filtering, helping users save gas.
    /// Returns false for all inputs by default.
    function _isPriorityOperator(address) internal view virtual returns (bool) {
        return false;
    }
}

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"tradFiRenderer","type":"address"},{"internalType":"address","name":"tradFiLines","type":"address"},{"internalType":"address","name":"tradFiRendererColor","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"adjustDST","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"","type":"uint256"}],"name":"btcAddresses","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"classicMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"colorTokenIdToSeed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"dayToPlace","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAdjustedTimestamp","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hoursToSub","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":"isDST","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWithinOpeningHours","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockRenderers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operatorFilteringEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"renderersLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setOperatorFilteringEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"_hours","type":"uint256"}],"name":"subHours","outputs":[{"internalType":"uint256","name":"newTimestamp","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tradFiRenderer","type":"address"}],"name":"swapTFR","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tradFiRendererColor","type":"address"}],"name":"swapTFRC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tfl","outputs":[{"internalType":"contract TradFiLines","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tfr","outputs":[{"internalType":"contract TradFiRenderer","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tfrc","outputs":[{"internalType":"contract TradFiRendererColor","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"on","type":"bool"}],"name":"toggleClassicMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdToCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdToPlacement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdToSeed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradFiRenderer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenToWrap","type":"uint256"},{"internalType":"string","name":"btcAddress","type":"string"}],"name":"wrapClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000601760156101000a81548160ff0219169083151502179055506000601760166101000a81548160ff02191690831515021790555060056018553480156200004c57600080fd5b506040516200652c3803806200652c8339818101604052810190620000729190620005b7565b6040518060400160405280600d81526020017f5472616446694c696e65732d43000000000000000000000000000000000000008152506040518060400160405280600581526020017f54464c2d430000000000000000000000000000000000000000000000000000008152508160009081620000ef91906200088d565b5080600190816200010191906200088d565b50505062000124620001186200022f60201b60201c565b6200023760201b60201c565b82601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001f7620002fd60201b60201c565b6001601760146101000a81548160ff02191690831515021790555062000226336101f46200032660201b60201c565b50505062000a8f565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000324733cc6cdda760b79bafa08df41ecfa224f810dceb66001620004c960201b60201c565b565b620003366200054360201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111562000397576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200038e90620009fb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000409576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004009062000a6d565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b637d3e3dbe8260601b60601c925081620004f85782620004f057634420e4869050620004f8565b63a0af290390505b8060e01b60005230600452826024526004600060446000806daaeb6d7670e522a718067333cd4e5af162000539578060005160e01c036200053857600080fd5b5b6000602452505050565b6000612710905090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200057f8262000552565b9050919050565b620005918162000572565b81146200059d57600080fd5b50565b600081519050620005b18162000586565b92915050565b600080600060608486031215620005d357620005d26200054d565b5b6000620005e386828701620005a0565b9350506020620005f686828701620005a0565b92505060406200060986828701620005a0565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200069557607f821691505b602082108103620006ab57620006aa6200064d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006d6565b620007218683620006d6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200076e62000768620007628462000739565b62000743565b62000739565b9050919050565b6000819050919050565b6200078a836200074d565b620007a2620007998262000775565b848454620006e3565b825550505050565b600090565b620007b9620007aa565b620007c68184846200077f565b505050565b5b81811015620007ee57620007e2600082620007af565b600181019050620007cc565b5050565b601f8211156200083d576200080781620006b1565b6200081284620006c6565b8101602085101562000822578190505b6200083a6200083185620006c6565b830182620007cb565b50505b505050565b600082821c905092915050565b6000620008626000198460080262000842565b1980831691505092915050565b60006200087d83836200084f565b9150826002028217905092915050565b620008988262000613565b67ffffffffffffffff811115620008b457620008b36200061e565b5b620008c082546200067c565b620008cd828285620007f2565b600060209050601f831160018114620009055760008415620008f0578287015190505b620008fc85826200086f565b8655506200096c565b601f1984166200091586620006b1565b60005b828110156200093f5784890151825560018201915060208501945060208101905062000918565b868310156200095f57848901516200095b601f8916826200084f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000620009e3602a8362000974565b9150620009f08262000985565b604082019050919050565b6000602082019050818103600083015262000a1681620009d4565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000a5560198362000974565b915062000a628262000a1d565b602082019050919050565b6000602082019050818103600083015262000a888162000a46565b9050919050565b615a8d8062000a9f6000396000f3fe6080604052600436106102965760003560e01c80636faceacb1161015a578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c514610a6d578063ef8bfddb14610aaa578063f2fde38b14610ae7578063f9134e6814610b10578063f917ff7614610b4d578063fb796e6c14610b645761029d565b8063b88d4fde1461094b578063c87b56dd14610974578063d384f498146109b1578063da362816146109da578063dce9e6f714610a17578063e589ee6714610a425761029d565b806395d89b411161011357806395d89b4114610829578063a22cb46514610854578063a36413601461087d578063a4580fe4146108ba578063acc9b7b2146108f7578063b7c0b8e8146109225761029d565b80636faceacb1461071957806370a0823114610742578063715018a61461077f57806375e91691146107965780638da5cb5b146107d357806390ec5dd1146107fe5761029d565b80632a55205a116101fe5780634b38a1fd116101b75780634b38a1fd146106095780634f6ccce7146106345780636352211e14610671578063664dd3e6146106ae5780636c62ecca146106d75780636dd80516146106ee5761029d565b80632a55205a146104f85780632f745c59146105365780633b4d0bd2146105735780633ccfd60b1461059e57806341e1c378146105b557806342842e0e146105e05761029d565b806309e393421161025057806309e39342146103d65780630a88d98b146104015780630b1bf1ac1461043e578063150b7a021461046757806318160ddd146104a457806323b872dd146104cf5761029d565b8062501553146102a257806301ffc9a7146102df57806304634d8d1461031c57806306fdde0314610345578063081812fc14610370578063095ea7b3146103ad5761029d565b3661029d57005b600080fd5b3480156102ae57600080fd5b506102c960048036038101906102c49190613bd7565b610b8f565b6040516102d69190613c26565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c99565b610ba3565b6040516103139190613ce1565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613d9e565b610bb5565b005b34801561035157600080fd5b5061035a610bcb565b6040516103679190613e6e565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613e90565b610c5d565b6040516103a49190613ecc565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613ee7565b610ce2565b005b3480156103e257600080fd5b506103eb610d17565b6040516103f89190613f86565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190613e90565b610d3d565b6040516104359190613c26565b60405180910390f35b34801561044a57600080fd5b5061046560048036038101906104609190613fa1565b610d55565b005b34801561047357600080fd5b5061048e60048036038101906104899190614103565b610df1565b60405161049b9190614195565b60405180910390f35b3480156104b057600080fd5b506104b9610e05565b6040516104c69190613c26565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906141b0565b610e12565b005b34801561050457600080fd5b5061051f600480360381019061051a9190613bd7565b610e7d565b60405161052d929190614203565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613ee7565b611067565b60405161056a9190613c26565b60405180910390f35b34801561057f57600080fd5b5061058861110c565b6040516105959190613ce1565b60405180910390f35b3480156105aa57600080fd5b506105b361111f565b005b3480156105c157600080fd5b506105ca611176565b6040516105d7919061424d565b60405180910390f35b3480156105ec57600080fd5b50610607600480360381019061060291906141b0565b61119c565b005b34801561061557600080fd5b5061061e611207565b60405161062b9190614289565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613e90565b61122d565b6040516106689190613c26565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190613e90565b61129e565b6040516106a59190613ecc565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190613fa1565b61134f565b005b3480156106e357600080fd5b506106ec6113eb565b005b3480156106fa57600080fd5b506107036115c5565b6040516107109190613ce1565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906142d0565b6115d8565b005b34801561074e57600080fd5b5061076960048036038101906107649190613fa1565b61167d565b6040516107769190613c26565b60405180910390f35b34801561078b57600080fd5b50610794611734565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613e90565b611748565b6040516107ca9190613c26565b60405180910390f35b3480156107df57600080fd5b506107e8611760565b6040516107f59190613ecc565b60405180910390f35b34801561080a57600080fd5b5061081361178a565b6040516108209190613c26565b60405180910390f35b34801561083557600080fd5b5061083e611790565b60405161084b9190613e6e565b60405180910390f35b34801561086057600080fd5b5061087b60048036038101906108769190614310565b611822565b005b34801561088957600080fd5b506108a4600480360381019061089f9190613e90565b611857565b6040516108b19190613e6e565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613e90565b6118f7565b6040516108ee9190613c26565b60405180910390f35b34801561090357600080fd5b5061090c61190f565b6040516109199190613ecc565b60405180910390f35b34801561092e57600080fd5b5061094960048036038101906109449190614350565b611935565b005b34801561095757600080fd5b50610972600480360381019061096d9190614103565b61195a565b005b34801561098057600080fd5b5061099b60048036038101906109969190613e90565b611a17565b6040516109a89190613e6e565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d3919061441e565b611d17565b005b3480156109e657600080fd5b50610a0160048036038101906109fc9190613e90565b612087565b604051610a0e9190613ce1565b60405180910390f35b348015610a2357600080fd5b50610a2c6120a7565b604051610a399190613ce1565b60405180910390f35b348015610a4e57600080fd5b50610a5761213b565b604051610a649190613c26565b60405180910390f35b348015610a7957600080fd5b50610a946004803603810190610a8f919061447a565b61214e565b604051610aa19190613ce1565b60405180910390f35b348015610ab657600080fd5b50610ad16004803603810190610acc9190613e90565b6121e2565b604051610ade9190613c26565b60405180910390f35b348015610af357600080fd5b50610b0e6004803603810190610b099190613fa1565b6121fa565b005b348015610b1c57600080fd5b50610b376004803603810190610b329190613e90565b61227d565b604051610b449190613c26565b60405180910390f35b348015610b5957600080fd5b50610b62612295565b005b348015610b7057600080fd5b50610b796122ba565b604051610b869190613ce1565b60405180910390f35b6000610b9b83836122cd565b905092915050565b6000610bae826122fd565b9050919050565b610bbd612377565b610bc782826123f5565b5050565b606060008054610bda906144e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c06906144e9565b8015610c535780601f10610c2857610100808354040283529160200191610c53565b820191906000526020600020905b815481529060010190602001808311610c3657829003601f168201915b5050505050905090565b6000610c688261258a565b610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e9061458c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610cec816125f6565b610d0857610cf86125fd565b15610d0757610d0681612614565b5b5b610d128383612658565b505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915090505481565b610d5d612377565b601760159054906101000a900460ff1615610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da4906145f8565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600063150b7a0260e01b9050949350505050565b6000600880549050905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e6c57610e4f336125f6565b610e6b57610e5b6125fd565b15610e6a57610e6933612614565b5b5b5b610e7784848461276f565b50505050565b6000806000600c60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff160361101257600b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061101c6127cf565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866110489190614647565b61105291906146b8565b90508160000151819350935050509250929050565b60006110728361167d565b82106110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa9061475b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601760169054906101000a900460ff1681565b611127612377565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611172573d6000803e3d6000fd5b5050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111f6576111d9336125f6565b6111f5576111e56125fd565b156111f4576111f333612614565b5b5b5b6112018484846127d9565b50505050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611237610e05565b8210611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f906147ed565b60405180910390fd5b6008828154811061128c5761128b61480d565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d906148ae565b60405180910390fd5b80915050919050565b611357612377565b601760159054906101000a900460ff16156113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e906145f8565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006113f942601854610b8f565b90506000611406826127f9565b90506003811180156114185750600b81105b1561143d576001601760166101000a81548160ff021916908315150217905550611596565b60006114488361281f565b9050600061145584612860565b90506003830361151057600e811115611488576001601760166101000a81548160ff02191690831515021790555061150f565b60088110156114b1576000601760166101000a81548160ff02191690831515021790555061150e565b6001600783836114c191906148ce565b6114cb91906148ce565b10156114f1576000601760166101000a81548160ff02191690831515021790555061150d565b6001601760166101000a81548160ff0219169083151502179055505b5b5b5b600b8303611593576007811115611541576000601760166101000a81548160ff021916908315150217905550611592565b6001828261154f91906148ce565b1015611575576001601760166101000a81548160ff021916908315150217905550611591565b6000601760166101000a81548160ff0219169083151502179055505b5b5b50505b601760169054906101000a900460ff16156115b85760046018819055506115c1565b60056018819055505b5050565b601760159054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff166115f88361129e565b73ffffffffffffffffffffffffffffffffffffffff161461164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590614974565b60405180910390fd5b806013600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490614a06565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61173c612377565b6117466000612887565b565b600e6020528060005260406000206000915090505481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60185481565b60606001805461179f906144e9565b80601f01602080910402602001604051908101604052809291908181526020018280546117cb906144e9565b80156118185780601f106117ed57610100808354040283529160200191611818565b820191906000526020600020905b8154815290600101906020018083116117fb57829003601f168201915b5050505050905090565b8161182c816125f6565b611848576118386125fd565b156118475761184681612614565b5b5b611852838361294d565b505050565b60126020528060005260406000206000915090508054611876906144e9565b80601f01602080910402602001604051908101604052809291908181526020018280546118a2906144e9565b80156118ef5780601f106118c4576101008083540402835291602001916118ef565b820191906000526020600020905b8154815290600101906020018083116118d257829003601f168201915b505050505081565b60106020528060005260406000206000915090505481565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61193d612377565b80601760146101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119b457611997336125f6565b6119b3576119a36125fd565b156119b2576119b133612614565b5b5b5b6119c56119bf612acd565b84612ad5565b611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90614a98565b60405180910390fd5b611a1085858585612bb3565b5050505050565b6060611a228261258a565b611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890614b2a565b60405180910390fd5b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166375e91691846040518263ffffffff1660e01b8152600401611abe9190613c26565b602060405180830381865afa158015611adb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aff9190614b5f565b90506000600f60008581526020019081526020016000205490506013600085815260200190815260200160002060009054906101000a900460ff1615611c1f57601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166369272f0483600d600088815260200190815260200160002054876040518463ffffffff1660e01b8152600401611bb193929190614b8c565b600060405180830381865afa158015611bce573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611bf79190614c33565b604051602001611c079190614cb8565b60405160208183030381529060405292505050611d12565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c831282e8383600d60008981526020019081526020016000205488601060008b8152602001908152602001600020546040518663ffffffff1660e01b8152600401611ca8959493929190614ccf565b600060405180830381865afa158015611cc5573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611cee9190614c33565b604051602001611cfe9190614cb8565b604051602081830303815290604052925050505b919050565b3373ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401611d899190613c26565b602060405180830381865afa158015611da6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dca9190614d37565b73ffffffffffffffffffffffffffffffffffffffff1614611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790614974565b60405180910390fd5b6000611e2a61213b565b90506000806000611e3a84612c0f565b909150905050809350819450829550505050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f9134e68876040518263ffffffff1660e01b8152600401611ea79190613c26565b602060405180830381865afa158015611ec4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ee89190614b5f565b600d600088815260200190815260200160002081905550601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e3330896040518463ffffffff1660e01b8152600401611f5e93929190614d64565b600060405180830381600087803b158015611f7857600080fd5b505af1158015611f8c573d6000803e3d6000fd5b50505050600143611f9d91906148ce565b40604051602001611fae9190614dc6565b6040516020818303038152906040528051906020012060001c600f600088815260200190815260200160002081905550600060016011600061271087611ff49190614647565b6064876120019190614647565b8661200c9190614de1565b6120169190614de1565b815260200190815260200160002060008282546120339190614de1565b925050819055905080601060008981526020019081526020016000208190555061205d3388612c96565b8560126000898152602001908152602001600020908161207d9190614fb7565b5050505050505050565b60136020528060005260406000206000915054906101000a900460ff1681565b6000806120b261213b565b905060006120bf82612e63565b905080156120d257600092505050612138565b60006120dd83612e79565b905060006120ea84612ea3565b905060098210806120fb5750600f82115b1561210d576000945050505050612138565b60098214801561211d5750601e81105b1561212f576000945050505050612138565b60019450505050505b90565b600061214942601854610b8f565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915090505481565b612202612377565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612271576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612268906150fb565b60405180910390fd5b61227a81612887565b50565b600d6020528060005260406000206000915090505481565b61229d612377565b6001601760156101000a81548160ff021916908315150217905550565b601760149054906101000a900460ff1681565b6000610e10826122dd9190614647565b836122e891906148ce565b9050828111156122f757600080fd5b92915050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612370575061236f82612ecb565b5b9050919050565b61237f612acd565b73ffffffffffffffffffffffffffffffffffffffff1661239d611760565b73ffffffffffffffffffffffffffffffffffffffff16146123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea90615167565b60405180910390fd5b565b6123fd6127cf565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561245b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612452906151f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c190615265565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000919050565b6000601760149054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa612650573d6000803e3d6000fd5b6000603a5250565b60006126638261129e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca906152f7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166126f2612acd565b73ffffffffffffffffffffffffffffffffffffffff16148061272157506127208161271b612acd565b61214e565b5b612760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275790615389565b60405180910390fd5b61276a8383612f45565b505050565b61278061277a612acd565b82612ad5565b6127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b690614a98565b60405180910390fd5b6127ca838383612ffe565b505050565b6000612710905090565b6127f48383836040518060200160405280600081525061195a565b505050565b6000612812620151808361280d91906146b8565b613259565b9091505080915050919050565b600080620151808361283191906146b8565b9050600160076003836128449190614de1565b61284e91906153a9565b6128589190614de1565b915050919050565b6000612879620151808361287491906146b8565b613259565b909150905080915050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612955612acd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b990615426565b60405180910390fd5b80600560006129cf612acd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612a7c612acd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ac19190613ce1565b60405180910390a35050565b600033905090565b6000612ae08261258a565b612b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b16906154b8565b60405180910390fd5b6000612b2a8361129e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b9957508373ffffffffffffffffffffffffffffffffffffffff16612b8184610c5d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612baa5750612ba9818561214e565b5b91505092915050565b612bbe848484612ffe565b612bca848484846133f8565b612c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c009061554a565b60405180910390fd5b50505050565b600080600080600080612c2f6201518088612c2a91906146b8565b613259565b80965081975082985050505060006201518088612c4c91906153a9565b9050610e1081612c5c91906146b8565b9350610e1081612c6c91906153a9565b9050603c81612c7b91906146b8565b9250603c81612c8a91906153a9565b91505091939550919395565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfc906155b6565b60405180910390fd5b612d0e8161258a565b15612d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4590615622565b60405180910390fd5b612d5a6000838361357f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612daa9190614de1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006006612e708361281f565b10159050919050565b6000806201518083612e8b91906153a9565b9050610e1081612e9b91906146b8565b915050919050565b600080610e1083612eb491906153a9565b9050603c81612ec391906146b8565b915050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f3e5750612f3d82613601565b5b9050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612fb88361129e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8273ffffffffffffffffffffffffffffffffffffffff1661301e8261129e565b73ffffffffffffffffffffffffffffffffffffffff1614613074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306b906156b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130da90615746565b60405180910390fd5b6130ee83838361357f565b6130f9600082612f45565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461314991906148ce565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131a09190614de1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080600080849050600062253d8c62010bd9836132779190615770565b6132819190615770565b9050600062023ab182600461329691906157b4565b6132a0919061582c565b9050600460038262023ab16132b591906157b4565b6132bf9190615770565b6132c9919061582c565b826132d49190615896565b9150600062164b096001846132e99190615770565b610fa06132f691906157b4565b613300919061582c565b9050601f6004826105b561331491906157b4565b61331e919061582c565b846133299190615896565b6133339190615770565b9250600061098f84605061334791906157b4565b613351919061582c565b9050600060508261098f61336591906157b4565b61336f919061582c565b8561337a9190615896565b9050600b82613389919061582c565b945084600c61339891906157b4565b6002836133a59190615770565b6133af9190615896565b915084836031866133c09190615896565b60646133cc91906157b4565b6133d69190615770565b6133e09190615770565b92508298508197508096505050505050509193909250565b60006134198473ffffffffffffffffffffffffffffffffffffffff166136e3565b15613572578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613442612acd565b8786866040518563ffffffff1660e01b8152600401613464949392919061592e565b6020604051808303816000875af19250505080156134a057506040513d601f19601f8201168201806040525081019061349d919061598f565b60015b613522573d80600081146134d0576040519150601f19603f3d011682016040523d82523d6000602084013e6134d5565b606091505b50600081510361351a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135119061554a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613577565b600190505b949350505050565b6135876120a7565b6135c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135bd90615a08565b60405180910390fd5b6001600d600083815260200190815260200160002060008282546135ea9190614de1565b925050819055506135fc838383613706565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806136cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806136dc57506136db82613818565b5b9050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b613711838383613882565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036137535761374e81613887565b613792565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137915761379083826138d0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137d4576137cf81613a3d565b613813565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613812576138118282613b0e565b5b5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138dd8461167d565b6138e791906148ce565b90506000600760008481526020019081526020016000205490508181146139cc576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a5191906148ce565b9050600060096000848152602001908152602001600020549050600060088381548110613a8157613a8061480d565b5b906000526020600020015490508060088381548110613aa357613aa261480d565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613af257613af1615a28565b5b6001900381819060005260206000200160009055905550505050565b6000613b198361167d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613bb481613ba1565b8114613bbf57600080fd5b50565b600081359050613bd181613bab565b92915050565b60008060408385031215613bee57613bed613b97565b5b6000613bfc85828601613bc2565b9250506020613c0d85828601613bc2565b9150509250929050565b613c2081613ba1565b82525050565b6000602082019050613c3b6000830184613c17565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c7681613c41565b8114613c8157600080fd5b50565b600081359050613c9381613c6d565b92915050565b600060208284031215613caf57613cae613b97565b5b6000613cbd84828501613c84565b91505092915050565b60008115159050919050565b613cdb81613cc6565b82525050565b6000602082019050613cf66000830184613cd2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d2782613cfc565b9050919050565b613d3781613d1c565b8114613d4257600080fd5b50565b600081359050613d5481613d2e565b92915050565b60006bffffffffffffffffffffffff82169050919050565b613d7b81613d5a565b8114613d8657600080fd5b50565b600081359050613d9881613d72565b92915050565b60008060408385031215613db557613db4613b97565b5b6000613dc385828601613d45565b9250506020613dd485828601613d89565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e18578082015181840152602081019050613dfd565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e4082613dde565b613e4a8185613de9565b9350613e5a818560208601613dfa565b613e6381613e24565b840191505092915050565b60006020820190508181036000830152613e888184613e35565b905092915050565b600060208284031215613ea657613ea5613b97565b5b6000613eb484828501613bc2565b91505092915050565b613ec681613d1c565b82525050565b6000602082019050613ee16000830184613ebd565b92915050565b60008060408385031215613efe57613efd613b97565b5b6000613f0c85828601613d45565b9250506020613f1d85828601613bc2565b9150509250929050565b6000819050919050565b6000613f4c613f47613f4284613cfc565b613f27565b613cfc565b9050919050565b6000613f5e82613f31565b9050919050565b6000613f7082613f53565b9050919050565b613f8081613f65565b82525050565b6000602082019050613f9b6000830184613f77565b92915050565b600060208284031215613fb757613fb6613b97565b5b6000613fc584828501613d45565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61401082613e24565b810181811067ffffffffffffffff8211171561402f5761402e613fd8565b5b80604052505050565b6000614042613b8d565b905061404e8282614007565b919050565b600067ffffffffffffffff82111561406e5761406d613fd8565b5b61407782613e24565b9050602081019050919050565b82818337600083830152505050565b60006140a66140a184614053565b614038565b9050828152602081018484840111156140c2576140c1613fd3565b5b6140cd848285614084565b509392505050565b600082601f8301126140ea576140e9613fce565b5b81356140fa848260208601614093565b91505092915050565b6000806000806080858703121561411d5761411c613b97565b5b600061412b87828801613d45565b945050602061413c87828801613d45565b935050604061414d87828801613bc2565b925050606085013567ffffffffffffffff81111561416e5761416d613b9c565b5b61417a878288016140d5565b91505092959194509250565b61418f81613c41565b82525050565b60006020820190506141aa6000830184614186565b92915050565b6000806000606084860312156141c9576141c8613b97565b5b60006141d786828701613d45565b93505060206141e886828701613d45565b92505060406141f986828701613bc2565b9150509250925092565b60006040820190506142186000830185613ebd565b6142256020830184613c17565b9392505050565b600061423782613f53565b9050919050565b6142478161422c565b82525050565b6000602082019050614262600083018461423e565b92915050565b600061427382613f53565b9050919050565b61428381614268565b82525050565b600060208201905061429e600083018461427a565b92915050565b6142ad81613cc6565b81146142b857600080fd5b50565b6000813590506142ca816142a4565b92915050565b600080604083850312156142e7576142e6613b97565b5b60006142f585828601613bc2565b9250506020614306858286016142bb565b9150509250929050565b6000806040838503121561432757614326613b97565b5b600061433585828601613d45565b9250506020614346858286016142bb565b9150509250929050565b60006020828403121561436657614365613b97565b5b6000614374848285016142bb565b91505092915050565b600067ffffffffffffffff82111561439857614397613fd8565b5b6143a182613e24565b9050602081019050919050565b60006143c16143bc8461437d565b614038565b9050828152602081018484840111156143dd576143dc613fd3565b5b6143e8848285614084565b509392505050565b600082601f83011261440557614404613fce565b5b81356144158482602086016143ae565b91505092915050565b6000806040838503121561443557614434613b97565b5b600061444385828601613bc2565b925050602083013567ffffffffffffffff81111561446457614463613b9c565b5b614470858286016143f0565b9150509250929050565b6000806040838503121561449157614490613b97565b5b600061449f85828601613d45565b92505060206144b085828601613d45565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061450157607f821691505b602082108103614514576145136144ba565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614576602c83613de9565b91506145818261451a565b604082019050919050565b600060208201905081810360008301526145a581614569565b9050919050565b7f43616e277420737761702072656e64657265727320616e796d6f726500000000600082015250565b60006145e2601c83613de9565b91506145ed826145ac565b602082019050919050565b60006020820190508181036000830152614611816145d5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061465282613ba1565b915061465d83613ba1565b925082820261466b81613ba1565b9150828204841483151761468257614681614618565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146c382613ba1565b91506146ce83613ba1565b9250826146de576146dd614689565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614745602b83613de9565b9150614750826146e9565b604082019050919050565b6000602082019050818103600083015261477481614738565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006147d7602c83613de9565b91506147e28261477b565b604082019050919050565b60006020820190508181036000830152614806816147ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614898602983613de9565b91506148a38261483c565b604082019050919050565b600060208201905081810360008301526148c78161488b565b9050919050565b60006148d982613ba1565b91506148e483613ba1565b92508282039050818111156148fc576148fb614618565b5b92915050565b7f53656e646572206973206e6f7420746865206f776e6572206f6620746865204e60008201527f46542e0000000000000000000000000000000000000000000000000000000000602082015250565b600061495e602383613de9565b915061496982614902565b604082019050919050565b6000602082019050818103600083015261498d81614951565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006149f0602a83613de9565b91506149fb82614994565b604082019050919050565b60006020820190508181036000830152614a1f816149e3565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614a82603183613de9565b9150614a8d82614a26565b604082019050919050565b60006020820190508181036000830152614ab181614a75565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b14602f83613de9565b9150614b1f82614ab8565b604082019050919050565b60006020820190508181036000830152614b4381614b07565b9050919050565b600081519050614b5981613bab565b92915050565b600060208284031215614b7557614b74613b97565b5b6000614b8384828501614b4a565b91505092915050565b6000606082019050614ba16000830186613c17565b614bae6020830185613c17565b614bbb6040830184613c17565b949350505050565b6000614bd6614bd18461437d565b614038565b905082815260208101848484011115614bf257614bf1613fd3565b5b614bfd848285613dfa565b509392505050565b600082601f830112614c1a57614c19613fce565b5b8151614c2a848260208601614bc3565b91505092915050565b600060208284031215614c4957614c48613b97565b5b600082015167ffffffffffffffff811115614c6757614c66613b9c565b5b614c7384828501614c05565b91505092915050565b600081905092915050565b6000614c9282613dde565b614c9c8185614c7c565b9350614cac818560208601613dfa565b80840191505092915050565b6000614cc48284614c87565b915081905092915050565b600060a082019050614ce46000830188613c17565b614cf16020830187613c17565b614cfe6040830186613c17565b614d0b6060830185613c17565b614d186080830184613c17565b9695505050505050565b600081519050614d3181613d2e565b92915050565b600060208284031215614d4d57614d4c613b97565b5b6000614d5b84828501614d22565b91505092915050565b6000606082019050614d796000830186613ebd565b614d866020830185613ebd565b614d936040830184613c17565b949350505050565b6000819050919050565b6000819050919050565b614dc0614dbb82614d9b565b614da5565b82525050565b6000614dd28284614daf565b60208201915081905092915050565b6000614dec82613ba1565b9150614df783613ba1565b9250828201905080821115614e0f57614e0e614618565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614e777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e3a565b614e818683614e3a565b95508019841693508086168417925050509392505050565b6000614eb4614eaf614eaa84613ba1565b613f27565b613ba1565b9050919050565b6000819050919050565b614ece83614e99565b614ee2614eda82614ebb565b848454614e47565b825550505050565b600090565b614ef7614eea565b614f02818484614ec5565b505050565b5b81811015614f2657614f1b600082614eef565b600181019050614f08565b5050565b601f821115614f6b57614f3c81614e15565b614f4584614e2a565b81016020851015614f54578190505b614f68614f6085614e2a565b830182614f07565b50505b505050565b600082821c905092915050565b6000614f8e60001984600802614f70565b1980831691505092915050565b6000614fa78383614f7d565b9150826002028217905092915050565b614fc082613dde565b67ffffffffffffffff811115614fd957614fd8613fd8565b5b614fe382546144e9565b614fee828285614f2a565b600060209050601f831160018114615021576000841561500f578287015190505b6150198582614f9b565b865550615081565b601f19841661502f86614e15565b60005b8281101561505757848901518255600182019150602085019450602081019050615032565b868310156150745784890151615070601f891682614f7d565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150e5602683613de9565b91506150f082615089565b604082019050919050565b60006020820190508181036000830152615114816150d8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615151602083613de9565b915061515c8261511b565b602082019050919050565b6000602082019050818103600083015261518081615144565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006151e3602a83613de9565b91506151ee82615187565b604082019050919050565b60006020820190508181036000830152615212816151d6565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061524f601983613de9565b915061525a82615219565b602082019050919050565b6000602082019050818103600083015261527e81615242565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006152e1602183613de9565b91506152ec82615285565b604082019050919050565b60006020820190508181036000830152615310816152d4565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000615373603883613de9565b915061537e82615317565b604082019050919050565b600060208201905081810360008301526153a281615366565b9050919050565b60006153b482613ba1565b91506153bf83613ba1565b9250826153cf576153ce614689565b5b828206905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615410601983613de9565b915061541b826153da565b602082019050919050565b6000602082019050818103600083015261543f81615403565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006154a2602c83613de9565b91506154ad82615446565b604082019050919050565b600060208201905081810360008301526154d181615495565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615534603283613de9565b915061553f826154d8565b604082019050919050565b6000602082019050818103600083015261556381615527565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006155a0602083613de9565b91506155ab8261556a565b602082019050919050565b600060208201905081810360008301526155cf81615593565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061560c601c83613de9565b9150615617826155d6565b602082019050919050565b6000602082019050818103600083015261563b816155ff565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061569e602983613de9565b91506156a982615642565b604082019050919050565b600060208201905081810360008301526156cd81615691565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615730602483613de9565b915061573b826156d4565b604082019050919050565b6000602082019050818103600083015261575f81615723565b9050919050565b6000819050919050565b600061577b82615766565b915061578683615766565b9250828201905082811215600083121683821260008412151617156157ae576157ad614618565b5b92915050565b60006157bf82615766565b91506157ca83615766565b92508282026157d881615766565b91507f800000000000000000000000000000000000000000000000000000000000000084146000841216156158105761580f614618565b5b828205841483151761582557615824614618565b5b5092915050565b600061583782615766565b915061584283615766565b92508261585257615851614689565b5b600160000383147f80000000000000000000000000000000000000000000000000000000000000008314161561588b5761588a614618565b5b828205905092915050565b60006158a182615766565b91506158ac83615766565b92508282039050818112600084121682821360008512151617156158d3576158d2614618565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000615900826158d9565b61590a81856158e4565b935061591a818560208601613dfa565b61592381613e24565b840191505092915050565b60006080820190506159436000830187613ebd565b6159506020830186613ebd565b61595d6040830185613c17565b818103606083015261596f81846158f5565b905095945050505050565b60008151905061598981613c6d565b92915050565b6000602082840312156159a5576159a4613b97565b5b60006159b38482850161597a565b91505092915050565b7f4f75747369646520726567756c61722074726164696e6720686f757273000000600082015250565b60006159f2601d83613de9565b91506159fd826159bc565b602082019050919050565b60006020820190508181036000830152615a21816159e5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212200c95f9b480b843379147a79d8964da7180eba96d408db04209942a5f22d9fa9264736f6c63430008110033000000000000000000000000e0204f92c4f80ae37ec8b9b52093aebd99875d510000000000000000000000004d04bba7f5ea45ac59769a1095762467b1157cc40000000000000000000000007b0d49c0fa441e69f12d45183d277eeb5461cd97

Deployed Bytecode

0x6080604052600436106102965760003560e01c80636faceacb1161015a578063b88d4fde116100c1578063e985e9c51161007a578063e985e9c514610a6d578063ef8bfddb14610aaa578063f2fde38b14610ae7578063f9134e6814610b10578063f917ff7614610b4d578063fb796e6c14610b645761029d565b8063b88d4fde1461094b578063c87b56dd14610974578063d384f498146109b1578063da362816146109da578063dce9e6f714610a17578063e589ee6714610a425761029d565b806395d89b411161011357806395d89b4114610829578063a22cb46514610854578063a36413601461087d578063a4580fe4146108ba578063acc9b7b2146108f7578063b7c0b8e8146109225761029d565b80636faceacb1461071957806370a0823114610742578063715018a61461077f57806375e91691146107965780638da5cb5b146107d357806390ec5dd1146107fe5761029d565b80632a55205a116101fe5780634b38a1fd116101b75780634b38a1fd146106095780634f6ccce7146106345780636352211e14610671578063664dd3e6146106ae5780636c62ecca146106d75780636dd80516146106ee5761029d565b80632a55205a146104f85780632f745c59146105365780633b4d0bd2146105735780633ccfd60b1461059e57806341e1c378146105b557806342842e0e146105e05761029d565b806309e393421161025057806309e39342146103d65780630a88d98b146104015780630b1bf1ac1461043e578063150b7a021461046757806318160ddd146104a457806323b872dd146104cf5761029d565b8062501553146102a257806301ffc9a7146102df57806304634d8d1461031c57806306fdde0314610345578063081812fc14610370578063095ea7b3146103ad5761029d565b3661029d57005b600080fd5b3480156102ae57600080fd5b506102c960048036038101906102c49190613bd7565b610b8f565b6040516102d69190613c26565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c99565b610ba3565b6040516103139190613ce1565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613d9e565b610bb5565b005b34801561035157600080fd5b5061035a610bcb565b6040516103679190613e6e565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613e90565b610c5d565b6040516103a49190613ecc565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf9190613ee7565b610ce2565b005b3480156103e257600080fd5b506103eb610d17565b6040516103f89190613f86565b60405180910390f35b34801561040d57600080fd5b5061042860048036038101906104239190613e90565b610d3d565b6040516104359190613c26565b60405180910390f35b34801561044a57600080fd5b5061046560048036038101906104609190613fa1565b610d55565b005b34801561047357600080fd5b5061048e60048036038101906104899190614103565b610df1565b60405161049b9190614195565b60405180910390f35b3480156104b057600080fd5b506104b9610e05565b6040516104c69190613c26565b60405180910390f35b3480156104db57600080fd5b506104f660048036038101906104f191906141b0565b610e12565b005b34801561050457600080fd5b5061051f600480360381019061051a9190613bd7565b610e7d565b60405161052d929190614203565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613ee7565b611067565b60405161056a9190613c26565b60405180910390f35b34801561057f57600080fd5b5061058861110c565b6040516105959190613ce1565b60405180910390f35b3480156105aa57600080fd5b506105b361111f565b005b3480156105c157600080fd5b506105ca611176565b6040516105d7919061424d565b60405180910390f35b3480156105ec57600080fd5b50610607600480360381019061060291906141b0565b61119c565b005b34801561061557600080fd5b5061061e611207565b60405161062b9190614289565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613e90565b61122d565b6040516106689190613c26565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190613e90565b61129e565b6040516106a59190613ecc565b60405180910390f35b3480156106ba57600080fd5b506106d560048036038101906106d09190613fa1565b61134f565b005b3480156106e357600080fd5b506106ec6113eb565b005b3480156106fa57600080fd5b506107036115c5565b6040516107109190613ce1565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b91906142d0565b6115d8565b005b34801561074e57600080fd5b5061076960048036038101906107649190613fa1565b61167d565b6040516107769190613c26565b60405180910390f35b34801561078b57600080fd5b50610794611734565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190613e90565b611748565b6040516107ca9190613c26565b60405180910390f35b3480156107df57600080fd5b506107e8611760565b6040516107f59190613ecc565b60405180910390f35b34801561080a57600080fd5b5061081361178a565b6040516108209190613c26565b60405180910390f35b34801561083557600080fd5b5061083e611790565b60405161084b9190613e6e565b60405180910390f35b34801561086057600080fd5b5061087b60048036038101906108769190614310565b611822565b005b34801561088957600080fd5b506108a4600480360381019061089f9190613e90565b611857565b6040516108b19190613e6e565b60405180910390f35b3480156108c657600080fd5b506108e160048036038101906108dc9190613e90565b6118f7565b6040516108ee9190613c26565b60405180910390f35b34801561090357600080fd5b5061090c61190f565b6040516109199190613ecc565b60405180910390f35b34801561092e57600080fd5b5061094960048036038101906109449190614350565b611935565b005b34801561095757600080fd5b50610972600480360381019061096d9190614103565b61195a565b005b34801561098057600080fd5b5061099b60048036038101906109969190613e90565b611a17565b6040516109a89190613e6e565b60405180910390f35b3480156109bd57600080fd5b506109d860048036038101906109d3919061441e565b611d17565b005b3480156109e657600080fd5b50610a0160048036038101906109fc9190613e90565b612087565b604051610a0e9190613ce1565b60405180910390f35b348015610a2357600080fd5b50610a2c6120a7565b604051610a399190613ce1565b60405180910390f35b348015610a4e57600080fd5b50610a5761213b565b604051610a649190613c26565b60405180910390f35b348015610a7957600080fd5b50610a946004803603810190610a8f919061447a565b61214e565b604051610aa19190613ce1565b60405180910390f35b348015610ab657600080fd5b50610ad16004803603810190610acc9190613e90565b6121e2565b604051610ade9190613c26565b60405180910390f35b348015610af357600080fd5b50610b0e6004803603810190610b099190613fa1565b6121fa565b005b348015610b1c57600080fd5b50610b376004803603810190610b329190613e90565b61227d565b604051610b449190613c26565b60405180910390f35b348015610b5957600080fd5b50610b62612295565b005b348015610b7057600080fd5b50610b796122ba565b604051610b869190613ce1565b60405180910390f35b6000610b9b83836122cd565b905092915050565b6000610bae826122fd565b9050919050565b610bbd612377565b610bc782826123f5565b5050565b606060008054610bda906144e9565b80601f0160208091040260200160405190810160405280929190818152602001828054610c06906144e9565b8015610c535780601f10610c2857610100808354040283529160200191610c53565b820191906000526020600020905b815481529060010190602001808311610c3657829003601f168201915b5050505050905090565b6000610c688261258a565b610ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9e9061458c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b81610cec816125f6565b610d0857610cf86125fd565b15610d0757610d0681612614565b5b5b610d128383612658565b505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f6020528060005260406000206000915090505481565b610d5d612377565b601760159054906101000a900460ff1615610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da4906145f8565b60405180910390fd5b80601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600063150b7a0260e01b9050949350505050565b6000600880549050905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e6c57610e4f336125f6565b610e6b57610e5b6125fd565b15610e6a57610e6933612614565b5b5b5b610e7784848461276f565b50505050565b6000806000600c60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff160361101257600b6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b600061101c6127cf565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866110489190614647565b61105291906146b8565b90508160000151819350935050509250929050565b60006110728361167d565b82106110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa9061475b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b601760169054906101000a900460ff1681565b611127612377565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611172573d6000803e3d6000fd5b5050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146111f6576111d9336125f6565b6111f5576111e56125fd565b156111f4576111f333612614565b5b5b5b6112018484846127d9565b50505050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611237610e05565b8210611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f906147ed565b60405180910390fd5b6008828154811061128c5761128b61480d565b5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133d906148ae565b60405180910390fd5b80915050919050565b611357612377565b601760159054906101000a900460ff16156113a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139e906145f8565b60405180910390fd5b80601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006113f942601854610b8f565b90506000611406826127f9565b90506003811180156114185750600b81105b1561143d576001601760166101000a81548160ff021916908315150217905550611596565b60006114488361281f565b9050600061145584612860565b90506003830361151057600e811115611488576001601760166101000a81548160ff02191690831515021790555061150f565b60088110156114b1576000601760166101000a81548160ff02191690831515021790555061150e565b6001600783836114c191906148ce565b6114cb91906148ce565b10156114f1576000601760166101000a81548160ff02191690831515021790555061150d565b6001601760166101000a81548160ff0219169083151502179055505b5b5b5b600b8303611593576007811115611541576000601760166101000a81548160ff021916908315150217905550611592565b6001828261154f91906148ce565b1015611575576001601760166101000a81548160ff021916908315150217905550611591565b6000601760166101000a81548160ff0219169083151502179055505b5b5b50505b601760169054906101000a900460ff16156115b85760046018819055506115c1565b60056018819055505b5050565b601760159054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff166115f88361129e565b73ffffffffffffffffffffffffffffffffffffffff161461164e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164590614974565b60405180910390fd5b806013600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490614a06565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61173c612377565b6117466000612887565b565b600e6020528060005260406000206000915090505481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60185481565b60606001805461179f906144e9565b80601f01602080910402602001604051908101604052809291908181526020018280546117cb906144e9565b80156118185780601f106117ed57610100808354040283529160200191611818565b820191906000526020600020905b8154815290600101906020018083116117fb57829003601f168201915b5050505050905090565b8161182c816125f6565b611848576118386125fd565b156118475761184681612614565b5b5b611852838361294d565b505050565b60126020528060005260406000206000915090508054611876906144e9565b80601f01602080910402602001604051908101604052809291908181526020018280546118a2906144e9565b80156118ef5780601f106118c4576101008083540402835291602001916118ef565b820191906000526020600020905b8154815290600101906020018083116118d257829003601f168201915b505050505081565b60106020528060005260406000206000915090505481565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61193d612377565b80601760146101000a81548160ff02191690831515021790555050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146119b457611997336125f6565b6119b3576119a36125fd565b156119b2576119b133612614565b5b5b5b6119c56119bf612acd565b84612ad5565b611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90614a98565b60405180910390fd5b611a1085858585612bb3565b5050505050565b6060611a228261258a565b611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890614b2a565b60405180910390fd5b6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166375e91691846040518263ffffffff1660e01b8152600401611abe9190613c26565b602060405180830381865afa158015611adb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611aff9190614b5f565b90506000600f60008581526020019081526020016000205490506013600085815260200190815260200160002060009054906101000a900460ff1615611c1f57601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166369272f0483600d600088815260200190815260200160002054876040518463ffffffff1660e01b8152600401611bb193929190614b8c565b600060405180830381865afa158015611bce573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611bf79190614c33565b604051602001611c079190614cb8565b60405160208183030381529060405292505050611d12565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c831282e8383600d60008981526020019081526020016000205488601060008b8152602001908152602001600020546040518663ffffffff1660e01b8152600401611ca8959493929190614ccf565b600060405180830381865afa158015611cc5573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611cee9190614c33565b604051602001611cfe9190614cb8565b604051602081830303815290604052925050505b919050565b3373ffffffffffffffffffffffffffffffffffffffff16601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401611d899190613c26565b602060405180830381865afa158015611da6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dca9190614d37565b73ffffffffffffffffffffffffffffffffffffffff1614611e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1790614974565b60405180910390fd5b6000611e2a61213b565b90506000806000611e3a84612c0f565b909150905050809350819450829550505050601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f9134e68876040518263ffffffff1660e01b8152600401611ea79190613c26565b602060405180830381865afa158015611ec4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ee89190614b5f565b600d600088815260200190815260200160002081905550601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342842e0e3330896040518463ffffffff1660e01b8152600401611f5e93929190614d64565b600060405180830381600087803b158015611f7857600080fd5b505af1158015611f8c573d6000803e3d6000fd5b50505050600143611f9d91906148ce565b40604051602001611fae9190614dc6565b6040516020818303038152906040528051906020012060001c600f600088815260200190815260200160002081905550600060016011600061271087611ff49190614647565b6064876120019190614647565b8661200c9190614de1565b6120169190614de1565b815260200190815260200160002060008282546120339190614de1565b925050819055905080601060008981526020019081526020016000208190555061205d3388612c96565b8560126000898152602001908152602001600020908161207d9190614fb7565b5050505050505050565b60136020528060005260406000206000915054906101000a900460ff1681565b6000806120b261213b565b905060006120bf82612e63565b905080156120d257600092505050612138565b60006120dd83612e79565b905060006120ea84612ea3565b905060098210806120fb5750600f82115b1561210d576000945050505050612138565b60098214801561211d5750601e81105b1561212f576000945050505050612138565b60019450505050505b90565b600061214942601854610b8f565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915090505481565b612202612377565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612271576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612268906150fb565b60405180910390fd5b61227a81612887565b50565b600d6020528060005260406000206000915090505481565b61229d612377565b6001601760156101000a81548160ff021916908315150217905550565b601760149054906101000a900460ff1681565b6000610e10826122dd9190614647565b836122e891906148ce565b9050828111156122f757600080fd5b92915050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612370575061236f82612ecb565b5b9050919050565b61237f612acd565b73ffffffffffffffffffffffffffffffffffffffff1661239d611760565b73ffffffffffffffffffffffffffffffffffffffff16146123f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ea90615167565b60405180910390fd5b565b6123fd6127cf565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561245b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612452906151f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c190615265565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6000919050565b6000601760149054906101000a900460ff16905090565b69c617113400112233445560005230601a5280603a52600080604460166daaeb6d7670e522a718067333cd4e5afa612650573d6000803e3d6000fd5b6000603a5250565b60006126638261129e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca906152f7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166126f2612acd565b73ffffffffffffffffffffffffffffffffffffffff16148061272157506127208161271b612acd565b61214e565b5b612760576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275790615389565b60405180910390fd5b61276a8383612f45565b505050565b61278061277a612acd565b82612ad5565b6127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b690614a98565b60405180910390fd5b6127ca838383612ffe565b505050565b6000612710905090565b6127f48383836040518060200160405280600081525061195a565b505050565b6000612812620151808361280d91906146b8565b613259565b9091505080915050919050565b600080620151808361283191906146b8565b9050600160076003836128449190614de1565b61284e91906153a9565b6128589190614de1565b915050919050565b6000612879620151808361287491906146b8565b613259565b909150905080915050919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612955612acd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b990615426565b60405180910390fd5b80600560006129cf612acd565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612a7c612acd565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ac19190613ce1565b60405180910390a35050565b600033905090565b6000612ae08261258a565b612b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b16906154b8565b60405180910390fd5b6000612b2a8361129e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612b9957508373ffffffffffffffffffffffffffffffffffffffff16612b8184610c5d565b73ffffffffffffffffffffffffffffffffffffffff16145b80612baa5750612ba9818561214e565b5b91505092915050565b612bbe848484612ffe565b612bca848484846133f8565b612c09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c009061554a565b60405180910390fd5b50505050565b600080600080600080612c2f6201518088612c2a91906146b8565b613259565b80965081975082985050505060006201518088612c4c91906153a9565b9050610e1081612c5c91906146b8565b9350610e1081612c6c91906153a9565b9050603c81612c7b91906146b8565b9250603c81612c8a91906153a9565b91505091939550919395565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cfc906155b6565b60405180910390fd5b612d0e8161258a565b15612d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4590615622565b60405180910390fd5b612d5a6000838361357f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612daa9190614de1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60006006612e708361281f565b10159050919050565b6000806201518083612e8b91906153a9565b9050610e1081612e9b91906146b8565b915050919050565b600080610e1083612eb491906153a9565b9050603c81612ec391906146b8565b915050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f3e5750612f3d82613601565b5b9050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612fb88361129e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8273ffffffffffffffffffffffffffffffffffffffff1661301e8261129e565b73ffffffffffffffffffffffffffffffffffffffff1614613074576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306b906156b4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036130e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130da90615746565b60405180910390fd5b6130ee83838361357f565b6130f9600082612f45565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461314991906148ce565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131a09190614de1565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600080600080849050600062253d8c62010bd9836132779190615770565b6132819190615770565b9050600062023ab182600461329691906157b4565b6132a0919061582c565b9050600460038262023ab16132b591906157b4565b6132bf9190615770565b6132c9919061582c565b826132d49190615896565b9150600062164b096001846132e99190615770565b610fa06132f691906157b4565b613300919061582c565b9050601f6004826105b561331491906157b4565b61331e919061582c565b846133299190615896565b6133339190615770565b9250600061098f84605061334791906157b4565b613351919061582c565b9050600060508261098f61336591906157b4565b61336f919061582c565b8561337a9190615896565b9050600b82613389919061582c565b945084600c61339891906157b4565b6002836133a59190615770565b6133af9190615896565b915084836031866133c09190615896565b60646133cc91906157b4565b6133d69190615770565b6133e09190615770565b92508298508197508096505050505050509193909250565b60006134198473ffffffffffffffffffffffffffffffffffffffff166136e3565b15613572578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613442612acd565b8786866040518563ffffffff1660e01b8152600401613464949392919061592e565b6020604051808303816000875af19250505080156134a057506040513d601f19601f8201168201806040525081019061349d919061598f565b60015b613522573d80600081146134d0576040519150601f19603f3d011682016040523d82523d6000602084013e6134d5565b606091505b50600081510361351a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135119061554a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613577565b600190505b949350505050565b6135876120a7565b6135c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135bd90615a08565b60405180910390fd5b6001600d600083815260200190815260200160002060008282546135ea9190614de1565b925050819055506135fc838383613706565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806136cc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806136dc57506136db82613818565b5b9050919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b613711838383613882565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036137535761374e81613887565b613792565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146137915761379083826138d0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036137d4576137cf81613a3d565b613813565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613812576138118282613b0e565b5b5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138dd8461167d565b6138e791906148ce565b90506000600760008481526020019081526020016000205490508181146139cc576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a5191906148ce565b9050600060096000848152602001908152602001600020549050600060088381548110613a8157613a8061480d565b5b906000526020600020015490508060088381548110613aa357613aa261480d565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613af257613af1615a28565b5b6001900381819060005260206000200160009055905550505050565b6000613b198361167d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b613bb481613ba1565b8114613bbf57600080fd5b50565b600081359050613bd181613bab565b92915050565b60008060408385031215613bee57613bed613b97565b5b6000613bfc85828601613bc2565b9250506020613c0d85828601613bc2565b9150509250929050565b613c2081613ba1565b82525050565b6000602082019050613c3b6000830184613c17565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613c7681613c41565b8114613c8157600080fd5b50565b600081359050613c9381613c6d565b92915050565b600060208284031215613caf57613cae613b97565b5b6000613cbd84828501613c84565b91505092915050565b60008115159050919050565b613cdb81613cc6565b82525050565b6000602082019050613cf66000830184613cd2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d2782613cfc565b9050919050565b613d3781613d1c565b8114613d4257600080fd5b50565b600081359050613d5481613d2e565b92915050565b60006bffffffffffffffffffffffff82169050919050565b613d7b81613d5a565b8114613d8657600080fd5b50565b600081359050613d9881613d72565b92915050565b60008060408385031215613db557613db4613b97565b5b6000613dc385828601613d45565b9250506020613dd485828601613d89565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613e18578082015181840152602081019050613dfd565b60008484015250505050565b6000601f19601f8301169050919050565b6000613e4082613dde565b613e4a8185613de9565b9350613e5a818560208601613dfa565b613e6381613e24565b840191505092915050565b60006020820190508181036000830152613e888184613e35565b905092915050565b600060208284031215613ea657613ea5613b97565b5b6000613eb484828501613bc2565b91505092915050565b613ec681613d1c565b82525050565b6000602082019050613ee16000830184613ebd565b92915050565b60008060408385031215613efe57613efd613b97565b5b6000613f0c85828601613d45565b9250506020613f1d85828601613bc2565b9150509250929050565b6000819050919050565b6000613f4c613f47613f4284613cfc565b613f27565b613cfc565b9050919050565b6000613f5e82613f31565b9050919050565b6000613f7082613f53565b9050919050565b613f8081613f65565b82525050565b6000602082019050613f9b6000830184613f77565b92915050565b600060208284031215613fb757613fb6613b97565b5b6000613fc584828501613d45565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61401082613e24565b810181811067ffffffffffffffff8211171561402f5761402e613fd8565b5b80604052505050565b6000614042613b8d565b905061404e8282614007565b919050565b600067ffffffffffffffff82111561406e5761406d613fd8565b5b61407782613e24565b9050602081019050919050565b82818337600083830152505050565b60006140a66140a184614053565b614038565b9050828152602081018484840111156140c2576140c1613fd3565b5b6140cd848285614084565b509392505050565b600082601f8301126140ea576140e9613fce565b5b81356140fa848260208601614093565b91505092915050565b6000806000806080858703121561411d5761411c613b97565b5b600061412b87828801613d45565b945050602061413c87828801613d45565b935050604061414d87828801613bc2565b925050606085013567ffffffffffffffff81111561416e5761416d613b9c565b5b61417a878288016140d5565b91505092959194509250565b61418f81613c41565b82525050565b60006020820190506141aa6000830184614186565b92915050565b6000806000606084860312156141c9576141c8613b97565b5b60006141d786828701613d45565b93505060206141e886828701613d45565b92505060406141f986828701613bc2565b9150509250925092565b60006040820190506142186000830185613ebd565b6142256020830184613c17565b9392505050565b600061423782613f53565b9050919050565b6142478161422c565b82525050565b6000602082019050614262600083018461423e565b92915050565b600061427382613f53565b9050919050565b61428381614268565b82525050565b600060208201905061429e600083018461427a565b92915050565b6142ad81613cc6565b81146142b857600080fd5b50565b6000813590506142ca816142a4565b92915050565b600080604083850312156142e7576142e6613b97565b5b60006142f585828601613bc2565b9250506020614306858286016142bb565b9150509250929050565b6000806040838503121561432757614326613b97565b5b600061433585828601613d45565b9250506020614346858286016142bb565b9150509250929050565b60006020828403121561436657614365613b97565b5b6000614374848285016142bb565b91505092915050565b600067ffffffffffffffff82111561439857614397613fd8565b5b6143a182613e24565b9050602081019050919050565b60006143c16143bc8461437d565b614038565b9050828152602081018484840111156143dd576143dc613fd3565b5b6143e8848285614084565b509392505050565b600082601f83011261440557614404613fce565b5b81356144158482602086016143ae565b91505092915050565b6000806040838503121561443557614434613b97565b5b600061444385828601613bc2565b925050602083013567ffffffffffffffff81111561446457614463613b9c565b5b614470858286016143f0565b9150509250929050565b6000806040838503121561449157614490613b97565b5b600061449f85828601613d45565b92505060206144b085828601613d45565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061450157607f821691505b602082108103614514576145136144ba565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614576602c83613de9565b91506145818261451a565b604082019050919050565b600060208201905081810360008301526145a581614569565b9050919050565b7f43616e277420737761702072656e64657265727320616e796d6f726500000000600082015250565b60006145e2601c83613de9565b91506145ed826145ac565b602082019050919050565b60006020820190508181036000830152614611816145d5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061465282613ba1565b915061465d83613ba1565b925082820261466b81613ba1565b9150828204841483151761468257614681614618565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006146c382613ba1565b91506146ce83613ba1565b9250826146de576146dd614689565b5b828204905092915050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614745602b83613de9565b9150614750826146e9565b604082019050919050565b6000602082019050818103600083015261477481614738565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006147d7602c83613de9565b91506147e28261477b565b604082019050919050565b60006020820190508181036000830152614806816147ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614898602983613de9565b91506148a38261483c565b604082019050919050565b600060208201905081810360008301526148c78161488b565b9050919050565b60006148d982613ba1565b91506148e483613ba1565b92508282039050818111156148fc576148fb614618565b5b92915050565b7f53656e646572206973206e6f7420746865206f776e6572206f6620746865204e60008201527f46542e0000000000000000000000000000000000000000000000000000000000602082015250565b600061495e602383613de9565b915061496982614902565b604082019050919050565b6000602082019050818103600083015261498d81614951565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006149f0602a83613de9565b91506149fb82614994565b604082019050919050565b60006020820190508181036000830152614a1f816149e3565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614a82603183613de9565b9150614a8d82614a26565b604082019050919050565b60006020820190508181036000830152614ab181614a75565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614b14602f83613de9565b9150614b1f82614ab8565b604082019050919050565b60006020820190508181036000830152614b4381614b07565b9050919050565b600081519050614b5981613bab565b92915050565b600060208284031215614b7557614b74613b97565b5b6000614b8384828501614b4a565b91505092915050565b6000606082019050614ba16000830186613c17565b614bae6020830185613c17565b614bbb6040830184613c17565b949350505050565b6000614bd6614bd18461437d565b614038565b905082815260208101848484011115614bf257614bf1613fd3565b5b614bfd848285613dfa565b509392505050565b600082601f830112614c1a57614c19613fce565b5b8151614c2a848260208601614bc3565b91505092915050565b600060208284031215614c4957614c48613b97565b5b600082015167ffffffffffffffff811115614c6757614c66613b9c565b5b614c7384828501614c05565b91505092915050565b600081905092915050565b6000614c9282613dde565b614c9c8185614c7c565b9350614cac818560208601613dfa565b80840191505092915050565b6000614cc48284614c87565b915081905092915050565b600060a082019050614ce46000830188613c17565b614cf16020830187613c17565b614cfe6040830186613c17565b614d0b6060830185613c17565b614d186080830184613c17565b9695505050505050565b600081519050614d3181613d2e565b92915050565b600060208284031215614d4d57614d4c613b97565b5b6000614d5b84828501614d22565b91505092915050565b6000606082019050614d796000830186613ebd565b614d866020830185613ebd565b614d936040830184613c17565b949350505050565b6000819050919050565b6000819050919050565b614dc0614dbb82614d9b565b614da5565b82525050565b6000614dd28284614daf565b60208201915081905092915050565b6000614dec82613ba1565b9150614df783613ba1565b9250828201905080821115614e0f57614e0e614618565b5b92915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302614e777fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82614e3a565b614e818683614e3a565b95508019841693508086168417925050509392505050565b6000614eb4614eaf614eaa84613ba1565b613f27565b613ba1565b9050919050565b6000819050919050565b614ece83614e99565b614ee2614eda82614ebb565b848454614e47565b825550505050565b600090565b614ef7614eea565b614f02818484614ec5565b505050565b5b81811015614f2657614f1b600082614eef565b600181019050614f08565b5050565b601f821115614f6b57614f3c81614e15565b614f4584614e2a565b81016020851015614f54578190505b614f68614f6085614e2a565b830182614f07565b50505b505050565b600082821c905092915050565b6000614f8e60001984600802614f70565b1980831691505092915050565b6000614fa78383614f7d565b9150826002028217905092915050565b614fc082613dde565b67ffffffffffffffff811115614fd957614fd8613fd8565b5b614fe382546144e9565b614fee828285614f2a565b600060209050601f831160018114615021576000841561500f578287015190505b6150198582614f9b565b865550615081565b601f19841661502f86614e15565b60005b8281101561505757848901518255600182019150602085019450602081019050615032565b868310156150745784890151615070601f891682614f7d565b8355505b6001600288020188555050505b505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006150e5602683613de9565b91506150f082615089565b604082019050919050565b60006020820190508181036000830152615114816150d8565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000615151602083613de9565b915061515c8261511b565b602082019050919050565b6000602082019050818103600083015261518081615144565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b60006151e3602a83613de9565b91506151ee82615187565b604082019050919050565b60006020820190508181036000830152615212816151d6565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600061524f601983613de9565b915061525a82615219565b602082019050919050565b6000602082019050818103600083015261527e81615242565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006152e1602183613de9565b91506152ec82615285565b604082019050919050565b60006020820190508181036000830152615310816152d4565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000615373603883613de9565b915061537e82615317565b604082019050919050565b600060208201905081810360008301526153a281615366565b9050919050565b60006153b482613ba1565b91506153bf83613ba1565b9250826153cf576153ce614689565b5b828206905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000615410601983613de9565b915061541b826153da565b602082019050919050565b6000602082019050818103600083015261543f81615403565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006154a2602c83613de9565b91506154ad82615446565b604082019050919050565b600060208201905081810360008301526154d181615495565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615534603283613de9565b915061553f826154d8565b604082019050919050565b6000602082019050818103600083015261556381615527565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006155a0602083613de9565b91506155ab8261556a565b602082019050919050565b600060208201905081810360008301526155cf81615593565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061560c601c83613de9565b9150615617826155d6565b602082019050919050565b6000602082019050818103600083015261563b816155ff565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b600061569e602983613de9565b91506156a982615642565b604082019050919050565b600060208201905081810360008301526156cd81615691565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615730602483613de9565b915061573b826156d4565b604082019050919050565b6000602082019050818103600083015261575f81615723565b9050919050565b6000819050919050565b600061577b82615766565b915061578683615766565b9250828201905082811215600083121683821260008412151617156157ae576157ad614618565b5b92915050565b60006157bf82615766565b91506157ca83615766565b92508282026157d881615766565b91507f800000000000000000000000000000000000000000000000000000000000000084146000841216156158105761580f614618565b5b828205841483151761582557615824614618565b5b5092915050565b600061583782615766565b915061584283615766565b92508261585257615851614689565b5b600160000383147f80000000000000000000000000000000000000000000000000000000000000008314161561588b5761588a614618565b5b828205905092915050565b60006158a182615766565b91506158ac83615766565b92508282039050818112600084121682821360008512151617156158d3576158d2614618565b5b92915050565b600081519050919050565b600082825260208201905092915050565b6000615900826158d9565b61590a81856158e4565b935061591a818560208601613dfa565b61592381613e24565b840191505092915050565b60006080820190506159436000830187613ebd565b6159506020830186613ebd565b61595d6040830185613c17565b818103606083015261596f81846158f5565b905095945050505050565b60008151905061598981613c6d565b92915050565b6000602082840312156159a5576159a4613b97565b5b60006159b38482850161597a565b91505092915050565b7f4f75747369646520726567756c61722074726164696e6720686f757273000000600082015250565b60006159f2601d83613de9565b91506159fd826159bc565b602082019050919050565b60006020820190508181036000830152615a21816159e5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212200c95f9b480b843379147a79d8964da7180eba96d408db04209942a5f22d9fa9264736f6c63430008110033

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

000000000000000000000000e0204f92c4f80ae37ec8b9b52093aebd99875d510000000000000000000000004d04bba7f5ea45ac59769a1095762467b1157cc40000000000000000000000007b0d49c0fa441e69f12d45183d277eeb5461cd97

-----Decoded View---------------
Arg [0] : tradFiRenderer (address): 0xe0204F92c4F80aE37ec8b9B52093AEBd99875D51
Arg [1] : tradFiLines (address): 0x4d04bBA7f5eA45ac59769a1095762467B1157CC4
Arg [2] : tradFiRendererColor (address): 0x7B0D49C0fA441E69f12D45183d277EEB5461Cd97

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000e0204f92c4f80ae37ec8b9b52093aebd99875d51
Arg [1] : 0000000000000000000000004d04bba7f5ea45ac59769a1095762467b1157cc4
Arg [2] : 0000000000000000000000007b0d49c0fa441e69f12d45183d277eeb5461cd97


Deployed Bytecode Sourcemap

1028:8292:16:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7032:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6833:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5701:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2426:100:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3985:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5519:174:16;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1608:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1284:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2362:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2659;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1658:113:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4248:180:16;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1674:442:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;1326:256:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2865:25:16;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9177:140;;;;;;;;;;;;;:::i;:::-;;1576:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4436:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1637:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1848:233:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2120:239:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2173:181:16;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2930:1310;;;;;;;;;;;;;:::i;:::-;;1718:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8109:191;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1850:208:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1884:103:14;;;;;;;;;;;;;:::i;:::-;;1234:43:16;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1236:87:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2897:26:16;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2595:104:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5314:193:16;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1441:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1339:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1540:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5857:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4632:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8308:861;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7257:843;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1492:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6253:574;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6115:131;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4644:164:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1394:40:16;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2142:201:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1183:44:16;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2568:83;;;;;;;;;;;;;:::i;:::-;;1675:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7032:176;7100:17;7145:55;7182:9;7193:6;7145:36;:55::i;:::-;7130:70;;7032:176;;;;:::o;6833:188::-;6953:4;6977:36;7001:11;6977:23;:36::i;:::-;6970:43;;6833:188;;;:::o;5701:144::-;1122:13:14;:11;:13::i;:::-;5795:42:16::1;5814:8;5824:12;5795:18;:42::i;:::-;5701:144:::0;;:::o;2426:100:5:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;4089:16;4097:7;4089;:16::i;:::-;4081:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4174:15;:24;4190:7;4174:24;;;;;;;;;;;;;;;;;;;;;4167:31;;3985:221;;;:::o;5519:174:16:-;5632:8;3578:29:13;3598:8;3578:19;:29::i;:::-;3573:122;;3628:27;:25;:27::i;:::-;3624:59;;;3657:26;3674:8;3657:16;:26::i;:::-;3624:59;3573:122;5653:32:16::1;5667:8;5677:7;5653:13;:32::i;:::-;5519:174:::0;;;:::o;1608:22::-;;;;;;;;;;;;;:::o;1284:48::-;;;;;;;;;;;;;;;;;:::o;2362:198::-;1122:13:14;:11;:13::i;:::-;2446:15:16::1;;;;;;;;;;;2445:16;2437:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;2532:19;2505:4;;:47;;;;;;;;;;;;;;;;;;2362:198:::0;:::o;2659:::-;2793:6;2819:30;;;2812:37;;2659:198;;;;;;:::o;1658:113:6:-;1719:7;1746:10;:17;;;;1739:24;;1658:113;:::o;4248:180:16:-;4366:4;3221:10:13;3213:18;;:4;:18;;;3209:184;;3253:31;3273:10;3253:19;:31::i;:::-;3248:134;;3309:27;:25;:27::i;:::-;3305:61;;;3338:28;3355:10;3338:16;:28::i;:::-;3305:61;3248:134;3209:184;4383:37:16::1;4402:4;4408:2;4412:7;4383:18;:37::i;:::-;4248:180:::0;;;;:::o;1674:442:4:-;1771:7;1780;1800:26;1829:17;:27;1847:8;1829:27;;;;;;;;;;;1800:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1901:1;1873:30;;:7;:16;;;:30;;;1869:92;;1930:19;1920:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1869:92;1973:21;2038:17;:15;:17::i;:::-;1997:58;;2011:7;:23;;;1998:36;;:10;:36;;;;:::i;:::-;1997:58;;;;:::i;:::-;1973:82;;2076:7;:16;;;2094:13;2068:40;;;;;;1674:442;;;;;:::o;1326:256:6:-;1423:7;1459:23;1476:5;1459:16;:23::i;:::-;1451:5;:31;1443:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1548:12;:19;1561:5;1548:19;;;;;;;;;;;;;;;:26;1568:5;1548:26;;;;;;;;;;;;1541:33;;1326:256;;;;:::o;2865:25:16:-;;;;;;;;;;;;;:::o;9177:140::-;1122:13:14;:11;:13::i;:::-;9225:12:16::1;9240:21;9225:36;;9280:10;9272:28;;:37;9301:7;9272:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;9214:103;9177:140::o:0;1576:25::-;;;;;;;;;;;;;:::o;4436:188::-;4558:4;3221:10:13;3213:18;;:4;:18;;;3209:184;;3253:31;3273:10;3253:19;:31::i;:::-;3248:134;;3309:27;:25;:27::i;:::-;3305:61;;;3338:28;3355:10;3338:16;:28::i;:::-;3305:61;3248:134;3209:184;4575:41:16::1;4598:4;4604:2;4608:7;4575:22;:41::i;:::-;4436:188:::0;;;;:::o;1637:31::-;;;;;;;;;;;;;:::o;1848:233:6:-;1923:7;1959:30;:28;:30::i;:::-;1951:5;:38;1943:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;2056:10;2067:5;2056:17;;;;;;;;:::i;:::-;;;;;;;;;;2049:24;;1848:233;;;:::o;2120:239:5:-;2192:7;2212:13;2228:7;:16;2236:7;2228:16;;;;;;;;;;;;;;;;;;;;;2212:32;;2280:1;2263:19;;:5;:19;;;2255:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2346:5;2339:12;;;2120:239;;;:::o;2173:181:16:-;1122:13:14;:11;:13::i;:::-;2251:15:16::1;;;;;;;;;;;2250:16;2242:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;2331:14;2310:3;;:36;;;;;;;;;;;;;;;;;;2173:181:::0;:::o;2930:1310::-;2971:14;2988:37;2997:15;3014:10;;2988:8;:37::i;:::-;2971:54;;3036:10;3049:47;3086:9;3049:36;:47::i;:::-;3036:60;;3118:1;3110:5;:9;:23;;;;;3131:2;3123:5;:10;3110:23;3107:1018;;;3158:4;3150:5;;:12;;;;;;;;;;;;;;;;;;3107:1018;;;3195:8;3206:51;3247:9;3206:40;:51::i;:::-;3195:62;;3272:15;3290:45;3325:9;3290:34;:45::i;:::-;3272:63;;3362:1;3353:5;:10;3350:417;;3400:2;3387:10;:15;3384:368;;;3435:4;3427:5;;:12;;;;;;;;;;;;;;;;;;3384:368;;;3481:1;3468:10;:14;3465:287;;;3515:5;3507;;:13;;;;;;;;;;;;;;;;;;3465:287;;;3597:1;3592;3586:3;3573:10;:16;;;;:::i;:::-;:20;;;;:::i;:::-;3572:26;3569:164;;;3635:5;3627;;:13;;;;;;;;;;;;;;;;;;3569:164;;;3705:4;3697:5;;:12;;;;;;;;;;;;;;;;;;3569:164;3465:287;3384:368;3350:417;3793:2;3784:5;:11;3781:333;;3832:1;3819:10;:14;3816:283;;;3866:5;3858;;:13;;;;;;;;;;;;;;;;;;3816:283;;;3944:1;3937:3;3924:10;:16;;;;:::i;:::-;3923:22;3920:160;;;3982:4;3974:5;;:12;;;;;;;;;;;;;;;;;;3920:160;;;4051:5;4043;;:13;;;;;;;;;;;;;;;;;;3920:160;3816:283;3781:333;3180:945;;3107:1018;4138:5;;;;;;;;;;;4135:98;;;4173:1;4160:10;:14;;;;4135:98;;;4220:1;4207:10;:14;;;;4135:98;2960:1280;;2930:1310::o;1718:35::-;;;;;;;;;;;;;:::o;8109:191::-;8207:10;8187:30;;:16;8195:7;8187;:16::i;:::-;:30;;;8179:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;8290:2;8267:11;:20;8279:7;8267:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;8109:191;;:::o;1850:208:5:-;1922:7;1967:1;1950:19;;:5;:19;;;1942:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2034:9;:16;2044:5;2034:16;;;;;;;;;;;;;;;;2027:23;;1850:208;;;:::o;1884:103:14:-;1122:13;:11;:13::i;:::-;1949:30:::1;1976:1;1949:18;:30::i;:::-;1884:103::o:0;1234:43:16:-;;;;;;;;;;;;;;;;;:::o;1236:87:14:-;1282:7;1309:6;;;;;;;;;;;1302:13;;1236:87;:::o;2897:26:16:-;;;;:::o;2595:104:5:-;2651:13;2684:7;2677:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2595:104;:::o;5314:193:16:-;5435:8;3578:29:13;3598:8;3578:19;:29::i;:::-;3573:122;;3628:27;:25;:27::i;:::-;3624:59;;;3657:26;3674:8;3657:16;:26::i;:::-;3624:59;3573:122;5456:43:16::1;5480:8;5490;5456:23;:43::i;:::-;5314:193:::0;;;:::o;1441:44::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1339:48::-;;;;;;;;;;;;;;;;;:::o;1540:29::-;;;;;;;;;;;;;:::o;5857:117::-;1122:13:14;:11;:13::i;:::-;5961:5:16::1;5934:24;;:32;;;;;;;;;;;;;;;;;;5857:117:::0;:::o;4632:371::-;4825:4;3221:10:13;3213:18;;:4;:18;;;3209:184;;3253:31;3273:10;3253:19;:31::i;:::-;3248:134;;3309:27;:25;:27::i;:::-;3305:61;;;3338:28;3355:10;3338:16;:28::i;:::-;3305:61;3248:134;3209:184;4850:41:16::1;4869:12;:10;:12::i;:::-;4883:7;4850:18;:41::i;:::-;4842:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;4956:39;4970:4;4976:2;4980:7;4989:5;4956:13;:39::i;:::-;4632:371:::0;;;;;:::o;8308:861::-;8410:13;8463:17;8471:8;8463:7;:17::i;:::-;8441:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;8567:12;8582:3;;;;;;;;;;;:17;;;8600:8;8582:27;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8567:42;;8620:17;8640:18;:28;8659:8;8640:28;;;;;;;;;;;;8620:48;;8682:11;:21;8694:8;8682:21;;;;;;;;;;;;;;;;;;;;;8679:250;;;8815:3;;;;;;;;;;;:18;;;8834:4;8840:14;:24;8855:8;8840:24;;;;;;;;;;;;8866:8;8815:60;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8772:126;;;;;;;;:::i;:::-;;;;;;;;;;;;;8719:198;;;;;;8679:250;9025:4;;;;;;;;;;;:19;;;9045:4;9051:9;9062:14;:24;9077:8;9062:24;;;;;;;;;;;;9088:8;9098:18;:28;9117:8;9098:28;;;;;;;;;;;;9025:102;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8986:160;;;;;;;;:::i;:::-;;;;;;;;;;;;;8941:220;;;;8308:861;;;;:::o;7257:843::-;7376:10;7348:38;;:3;;;;;;;;;;;:11;;;7360;7348:24;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:38;;;7340:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7436:14;7453:22;:20;:22::i;:::-;7436:39;;7486:9;7506:10;7527:8;7573:58;7621:9;7573:47;:58::i;:::-;7546:85;;;;;;;;;;;;;;;;;;7672:3;;;;;;;;;;;:18;;;7691:11;7672:31;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7642:14;:27;7657:11;7642:27;;;;;;;;;;;:61;;;;7714:3;;;;;;;;;;;:20;;;7735:10;7755:4;7762:11;7714:60;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7874:1;7861:12;:14;;;;:::i;:::-;7851:25;7834:43;;;;;;;;:::i;:::-;;;;;;;;;;;;;7824:54;;;;;;7819:60;;7785:18;:31;7804:11;7785:31;;;;;;;;;;;:94;;;;7890:10;7951:1;7903:10;:44;7941:5;7934:4;:12;;;;:::i;:::-;7928:3;7920:5;:11;;;;:::i;:::-;7914:3;:17;;;;:::i;:::-;:32;;;;:::i;:::-;7903:44;;;;;;;;;;;;:49;;;;;;;:::i;:::-;;;;;;;7890:62;;7997:5;7963:18;:31;7982:11;7963:31;;;;;;;;;;;:39;;;;8013:30;8019:10;8031:11;8013:5;:30::i;:::-;8082:10;8054:12;:25;8067:11;8054:25;;;;;;;;;;;:38;;;;;;:::i;:::-;;7329:771;;;;;7257:843;;:::o;1492:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;6253:574::-;6305:4;6321:14;6338:22;:20;:22::i;:::-;6321:39;;6371:12;6386:48;6424:9;6386:37;:48::i;:::-;6371:63;;6448:7;6445:50;;;6478:5;6471:12;;;;;;6445:50;6507:9;6519:46;6555:9;6519:35;:46::i;:::-;6507:58;;6576:11;6590:48;6628:9;6590:37;:48::i;:::-;6576:62;;6661:1;6654:4;:8;:21;;;;6673:2;6666:4;:9;6654:21;6651:65;;;6699:5;6692:12;;;;;;;;6651:65;6739:1;6731:4;:9;:24;;;;;6753:2;6744:6;:11;6731:24;6728:68;;;6779:5;6772:12;;;;;;;;6728:68;6815:4;6808:11;;;;;;6253:574;;:::o;6115:131::-;6167:14;6201:37;6210:15;6227:10;;6201:8;:37::i;:::-;6194:44;;6115:131;:::o;4644:164:5:-;4741:4;4765:18;:25;4784:5;4765:25;;;;;;;;;;;;;;;:35;4791:8;4765:35;;;;;;;;;;;;;;;;;;;;;;;;;4758:42;;4644:164;;;;:::o;1394:40:16:-;;;;;;;;;;;;;;;;;:::o;2142:201:14:-;1122:13;:11;:13::i;:::-;2251:1:::1;2231:22;;:8;:22;;::::0;2223:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2307:28;2326:8;2307:18;:28::i;:::-;2142:201:::0;:::o;1183:44:16:-;;;;;;;;;;;;;;;;;:::o;2568:83::-;1122:13:14;:11;:13::i;:::-;2639:4:16::1;2621:15;;:22;;;;;;;;;;;;;;;;;;2568:83::o:0;1675:36::-;;;;;;;;;;;;;:::o;11144:202:1:-;11214:17;1077:7;11270:6;:25;;;;:::i;:::-;11258:9;:37;;;;:::i;:::-;11243:52;;11329:9;11313:12;:25;;11305:34;;;;;;11144:202;;;;:::o;1404:215:4:-;1506:4;1545:26;1530:41;;;:11;:41;;;;:81;;;;1575:36;1599:11;1575:23;:36::i;:::-;1530:81;1523:88;;1404:215;;;:::o;1401:132:14:-;1476:12;:10;:12::i;:::-;1465:23;;:7;:5;:7::i;:::-;:23;;;1457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1401:132::o;2766:332:4:-;2885:17;:15;:17::i;:::-;2869:33;;:12;:33;;;;2861:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;2988:1;2968:22;;:8;:22;;;2960:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;3055:35;;;;;;;;3067:8;3055:35;;;;;;3077:12;3055:35;;;;;3033:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2766:332;;:::o;7379:127:5:-;7444:4;7496:1;7468:30;;:7;:16;7476:7;7468:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7461:37;;7379:127;;;:::o;5627:106:13:-;5696:4;5627:106;;;:::o;5982:125:16:-;6051:4;6075:24;;;;;;;;;;;6068:31;;5982:125;:::o;3811:1359:13:-;4204:22;4198:4;4191:36;4297:9;4291:4;4284:23;4372:8;4366:4;4359:22;4549:4;4543;4537;4531;4504:25;4497:5;4486:68;4476:274;;4670:16;4664:4;4658;4643:44;4718:16;4712:4;4705:30;4476:274;5150:1;5144:4;5137:15;3811:1359;:::o;3508:411:5:-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;3647:11;;:2;:11;;;3639:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3747:5;3731:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3756:37;3773:5;3780:12;:10;:12::i;:::-;3756:16;:37::i;:::-;3731:62;3709:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;4875:339::-;5070:41;5089:12;:10;:12::i;:::-;5103:7;5070:18;:41::i;:::-;5062:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;:::-;4875:339;;;:::o;2398:97:4:-;2456:6;2482:5;2475:12;;2398:97;:::o;5285:185:5:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;:::-;5285:185;;;:::o;7222:138:1:-;7279:10;7313:40;1026:12;7325:9;:27;;;;:::i;:::-;7313:11;:40::i;:::-;7301:52;;;;;;;;7222:138;;;:::o;6901:175::-;6962:14;6988:10;1026:12;7001:9;:27;;;;:::i;:::-;6988:40;;7068:1;7064;7059;7051:5;:9;;;;:::i;:::-;7050:15;;;;:::i;:::-;:19;;;;:::i;:::-;7038:31;;6978:98;6901:175;;;:::o;7365:132::-;7420:8;7450:40;1026:12;7462:9;:27;;;;:::i;:::-;7450:11;:40::i;:::-;7440:50;;;;;;;;;7365:132;;;:::o;2503:191:14:-;2577:16;2596:6;;;;;;;;;;;2577:25;;2622:8;2613:6;;:17;;;;;;;;;;;;;;;;;;2677:8;2646:40;;2667:8;2646:40;;;;;;;;;;;;2566:128;2503:191;:::o;4278:295:5:-;4393:12;:10;:12::i;:::-;4381:24;;:8;:24;;;4373:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4493:8;4448:18;:32;4467:12;:10;:12::i;:::-;4448:32;;;;;;;;;;;;;;;:42;4481:8;4448:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4546:8;4517:48;;4532:12;:10;:12::i;:::-;4517:48;;;4556:8;4517:48;;;;;;:::i;:::-;;;;;;;;4278:295;;:::o;656:98:2:-;709:7;736:10;729:17;;656:98;:::o;7673:348:5:-;7766:4;7791:16;7799:7;7791;:16::i;:::-;7783:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;7925:16;;:7;:16;;;:51;;;;7969:7;7945:31;;:20;7957:7;7945:11;:20::i;:::-;:31;;;7925:51;:87;;;;7980:32;7997:5;8004:7;7980:16;:32::i;:::-;7925:87;7917:96;;;7673:348;;;;:::o;6751:315::-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6751:315;;;;:::o;4573:433:1:-;4641:9;4652:10;4664:8;4674:9;4685:11;4698;4742:40;1026:12;4754:9;:27;;;;:::i;:::-;4742:11;:40::i;:::-;4721:61;;;;;;;;;;;;4792:9;1026:12;4804:9;:27;;;;:::i;:::-;4792:39;;1077:7;4848:4;:23;;;;:::i;:::-;4841:30;;1077:7;4888:4;:23;;;;:::i;:::-;4881:30;;1125:2;4930:4;:25;;;;:::i;:::-;4921:34;;1125:2;4974:4;:25;;;;:::i;:::-;4965:34;;4711:295;4573:433;;;;;;;:::o;9357:382:5:-;9451:1;9437:16;;:2;:16;;;9429:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9510:16;9518:7;9510;:16::i;:::-;9509:17;9501:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;9647:1;9630:9;:13;9640:2;9630:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9678:2;9659:7;:16;9667:7;9659:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9723:7;9719:2;9698:33;;9715:1;9698:33;;;;;;;;;;;;9357:382;;:::o;6123:133:1:-;6181:12;1356:1;6215:23;6228:9;6215:12;:23::i;:::-;:34;;6205:44;;6123:133;;;:::o;7502:163::-;7558:9;7579;1026:12;7591:9;:27;;;;:::i;:::-;7579:39;;1077:7;7635:4;:23;;;;:::i;:::-;7628:30;;7569:96;7502:163;;;:::o;7670:172::-;7728:11;7751:9;1077:7;7763:9;:28;;;;:::i;:::-;7751:40;;1125:2;7810:4;:25;;;;:::i;:::-;7801:34;;7741:101;7670:172;;;:::o;1018:224:6:-;1120:4;1159:35;1144:50;;;:11;:50;;;;:90;;;;1198:36;1222:11;1198:23;:36::i;:::-;1144:90;1137:97;;1018:224;;;:::o;11361:174:5:-;11463:2;11436:15;:24;11452:7;11436:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11519:7;11515:2;11481:46;;11490:23;11505:7;11490:14;:23::i;:::-;11481:46;;;;;;;;;;;;11361:174;;:::o;10665:578::-;10824:4;10797:31;;:23;10812:7;10797:14;:23::i;:::-;:31;;;10789:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10907:1;10893:16;;:2;:16;;;10885:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;11128:1;11109:9;:15;11119:4;11109:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;11157:1;11140:9;:13;11150:2;11140:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;11188:2;11169:7;:16;11177:7;11169:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;11227:7;11223:2;11208:27;;11217:4;11208:27;;;;;;;;;;;;10665:578;;;:::o;3312:605:1:-;3368:9;3379:10;3391:8;3411:10;3428:5;3411:23;;3445:5;1163:7;3462:5;3453:6;:14;;;;:::i;:::-;:31;;;;:::i;:::-;3445:39;;3494:5;3510:6;3506:1;3502;:5;;;;:::i;:::-;:14;;;;:::i;:::-;3494:22;;3553:1;3548;3544;3535:6;:10;;;;:::i;:::-;:14;;;;:::i;:::-;3534:20;;;;:::i;:::-;3530:1;:24;;;;:::i;:::-;3526:28;;3564:9;3593:7;3588:1;3584;:5;;;;:::i;:::-;3576:4;:14;;;;:::i;:::-;:24;;;;:::i;:::-;3564:36;;3637:2;3633:1;3625:5;3618:4;:12;;;;:::i;:::-;:16;;;;:::i;:::-;3614:1;:20;;;;:::i;:::-;:25;;;;:::i;:::-;3610:29;;3649:10;3671:4;3667:1;3662:2;:6;;;;:::i;:::-;:13;;;;:::i;:::-;3649:26;;3685:8;3716:2;3707:6;3700:4;:13;;;;:::i;:::-;:18;;;;:::i;:::-;3696:1;:22;;;;:::i;:::-;3685:33;;3741:2;3732:6;:11;;;;:::i;:::-;3728:15;;3780:1;3775:2;:6;;;;:::i;:::-;3771:1;3762:6;:10;;;;:::i;:::-;:19;;;;:::i;:::-;3753:28;;3824:1;3816:5;3810:2;3806:1;:6;;;;:::i;:::-;3799:3;:14;;;;:::i;:::-;:22;;;;:::i;:::-;:26;;;;:::i;:::-;3791:34;;3848:5;3836:18;;3877:6;3864:20;;3905:4;3894:16;;3401:516;;;;;;3312:605;;;;;:::o;12100:803:5:-;12255:4;12276:15;:2;:13;;;:15::i;:::-;12272:624;;;12328:2;12312:36;;;12349:12;:10;:12::i;:::-;12363:4;12369:7;12378:5;12312:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12308:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12575:1;12558:6;:13;:18;12554:272;;12601:60;;;;;;;;;;:::i;:::-;;;;;;;;12554:272;12776:6;12770:13;12761:6;12757:2;12753:15;12746:38;12308:533;12445:45;;;12435:55;;;:6;:55;;;;12428:62;;;;;12272:624;12880:4;12873:11;;12100:803;;;;;;;:::o;5011:295:16:-;5147:22;:20;:22::i;:::-;5139:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;5241:1;5214:14;:23;5229:7;5214:23;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;5253:45;5280:4;5286:2;5290:7;5253:26;:45::i;:::-;5011:295;;;:::o;1481:305:5:-;1583:4;1635:25;1620:40;;;:11;:40;;;;:105;;;;1692:33;1677:48;;;:11;:48;;;;1620:105;:158;;;;1742:36;1766:11;1742:23;:36::i;:::-;1620:158;1600:178;;1481:305;;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;2694:589:6:-;2838:45;2865:4;2871:2;2875:7;2838:26;:45::i;:::-;2916:1;2900:18;;:4;:18;;;2896:187;;2935:40;2967:7;2935:31;:40::i;:::-;2896:187;;;3005:2;2997:10;;:4;:10;;;2993:90;;3024:47;3057:4;3063:7;3024:32;:47::i;:::-;2993:90;2896:187;3111:1;3097:16;;:2;:16;;;3093:183;;3130:45;3167:7;3130:36;:45::i;:::-;3093:183;;;3203:4;3197:10;;:2;:10;;;3193:83;;3224:40;3252:2;3256:7;3224:27;:40::i;:::-;3193:83;3093:183;2694:589;;;:::o;854:157:3:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;13475:126:5:-;;;;:::o;4006:164:6:-;4110:10;:17;;;;4083:15;:24;4099:7;4083:24;;;;;;;;;;;:44;;;;4138:10;4154:7;4138:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4006:164;:::o;4797:988::-;5063:22;5113:1;5088:22;5105:4;5088:16;:22::i;:::-;:26;;;;:::i;:::-;5063:51;;5125:18;5146:17;:26;5164:7;5146:26;;;;;;;;;;;;5125:47;;5293:14;5279:10;:28;5275:328;;5324:19;5346:12;:18;5359:4;5346:18;;;;;;;;;;;;;;;:34;5365:14;5346:34;;;;;;;;;;;;5324:56;;5430:11;5397:12;:18;5410:4;5397:18;;;;;;;;;;;;;;;:30;5416:10;5397:30;;;;;;;;;;;:44;;;;5547:10;5514:17;:30;5532:11;5514:30;;;;;;;;;;;:43;;;;5309:294;5275:328;5699:17;:26;5717:7;5699:26;;;;;;;;;;;5692:33;;;5743:12;:18;5756:4;5743:18;;;;;;;;;;;;;;;:34;5762:14;5743:34;;;;;;;;;;;5736:41;;;4878:907;;4797:988;;:::o;6080:1079::-;6333:22;6378:1;6358:10;:17;;;;:21;;;;:::i;:::-;6333:46;;6390:18;6411:15;:24;6427:7;6411:24;;;;;;;;;;;;6390:45;;6762:19;6784:10;6795:14;6784:26;;;;;;;;:::i;:::-;;;;;;;;;;6762:48;;6848:11;6823:10;6834;6823:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6959:10;6928:15;:28;6944:11;6928:28;;;;;;;;;;;:41;;;;7100:15;:24;7116:7;7100:24;;;;;;;;;;;7093:31;;;7135:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;6151:1008;;;6080:1079;:::o;3584:221::-;3669:14;3686:20;3703:2;3686:16;:20::i;:::-;3669:37;;3744:7;3717:12;:16;3730:2;3717:16;;;;;;;;;;;;;;;:24;3734:6;3717:24;;;;;;;;;;;:34;;;;3791:6;3762:17;:26;3780:7;3762:26;;;;;;;;;;;:35;;;;3658:147;3584:221;;:::o;7:75:17:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:118::-;1257:24;1275:5;1257:24;:::i;:::-;1252:3;1245:37;1170:118;;:::o;1294:222::-;1387:4;1425:2;1414:9;1410:18;1402:26;;1438:71;1506:1;1495:9;1491:17;1482:6;1438:71;:::i;:::-;1294:222;;;;:::o;1522:149::-;1558:7;1598:66;1591:5;1587:78;1576:89;;1522:149;;;:::o;1677:120::-;1749:23;1766:5;1749:23;:::i;:::-;1742:5;1739:34;1729:62;;1787:1;1784;1777:12;1729:62;1677:120;:::o;1803:137::-;1848:5;1886:6;1873:20;1864:29;;1902:32;1928:5;1902:32;:::i;:::-;1803:137;;;;:::o;1946:327::-;2004:6;2053:2;2041:9;2032:7;2028:23;2024:32;2021:119;;;2059:79;;:::i;:::-;2021:119;2179:1;2204:52;2248:7;2239:6;2228:9;2224:22;2204:52;:::i;:::-;2194:62;;2150:116;1946:327;;;;:::o;2279:90::-;2313:7;2356:5;2349:13;2342:21;2331:32;;2279:90;;;:::o;2375:109::-;2456:21;2471:5;2456:21;:::i;:::-;2451:3;2444:34;2375:109;;:::o;2490:210::-;2577:4;2615:2;2604:9;2600:18;2592:26;;2628:65;2690:1;2679:9;2675:17;2666:6;2628:65;:::i;:::-;2490:210;;;;:::o;2706:126::-;2743:7;2783:42;2776:5;2772:54;2761:65;;2706:126;;;:::o;2838:96::-;2875:7;2904:24;2922:5;2904:24;:::i;:::-;2893:35;;2838:96;;;:::o;2940:122::-;3013:24;3031:5;3013:24;:::i;:::-;3006:5;3003:35;2993:63;;3052:1;3049;3042:12;2993:63;2940:122;:::o;3068:139::-;3114:5;3152:6;3139:20;3130:29;;3168:33;3195:5;3168:33;:::i;:::-;3068:139;;;;:::o;3213:109::-;3249:7;3289:26;3282:5;3278:38;3267:49;;3213:109;;;:::o;3328:120::-;3400:23;3417:5;3400:23;:::i;:::-;3393:5;3390:34;3380:62;;3438:1;3435;3428:12;3380:62;3328:120;:::o;3454:137::-;3499:5;3537:6;3524:20;3515:29;;3553:32;3579:5;3553:32;:::i;:::-;3454:137;;;;:::o;3597:472::-;3664:6;3672;3721:2;3709:9;3700:7;3696:23;3692:32;3689:119;;;3727:79;;:::i;:::-;3689:119;3847:1;3872:53;3917:7;3908:6;3897:9;3893:22;3872:53;:::i;:::-;3862:63;;3818:117;3974:2;4000:52;4044:7;4035:6;4024:9;4020:22;4000:52;:::i;:::-;3990:62;;3945:117;3597:472;;;;;:::o;4075:99::-;4127:6;4161:5;4155:12;4145:22;;4075:99;;;:::o;4180:169::-;4264:11;4298:6;4293:3;4286:19;4338:4;4333:3;4329:14;4314:29;;4180:169;;;;:::o;4355:246::-;4436:1;4446:113;4460:6;4457:1;4454:13;4446:113;;;4545:1;4540:3;4536:11;4530:18;4526:1;4521:3;4517:11;4510:39;4482:2;4479:1;4475:10;4470:15;;4446:113;;;4593:1;4584:6;4579:3;4575:16;4568:27;4417:184;4355:246;;;:::o;4607:102::-;4648:6;4699:2;4695:7;4690:2;4683:5;4679:14;4675:28;4665:38;;4607:102;;;:::o;4715:377::-;4803:3;4831:39;4864:5;4831:39;:::i;:::-;4886:71;4950:6;4945:3;4886:71;:::i;:::-;4879:78;;4966:65;5024:6;5019:3;5012:4;5005:5;5001:16;4966:65;:::i;:::-;5056:29;5078:6;5056:29;:::i;:::-;5051:3;5047:39;5040:46;;4807:285;4715:377;;;;:::o;5098:313::-;5211:4;5249:2;5238:9;5234:18;5226:26;;5298:9;5292:4;5288:20;5284:1;5273:9;5269:17;5262:47;5326:78;5399:4;5390:6;5326:78;:::i;:::-;5318:86;;5098:313;;;;:::o;5417:329::-;5476:6;5525:2;5513:9;5504:7;5500:23;5496:32;5493:119;;;5531:79;;:::i;:::-;5493:119;5651:1;5676:53;5721:7;5712:6;5701:9;5697:22;5676:53;:::i;:::-;5666:63;;5622:117;5417:329;;;;:::o;5752:118::-;5839:24;5857:5;5839:24;:::i;:::-;5834:3;5827:37;5752:118;;:::o;5876:222::-;5969:4;6007:2;5996:9;5992:18;5984:26;;6020:71;6088:1;6077:9;6073:17;6064:6;6020:71;:::i;:::-;5876:222;;;;:::o;6104:474::-;6172:6;6180;6229:2;6217:9;6208:7;6204:23;6200:32;6197:119;;;6235:79;;:::i;:::-;6197:119;6355:1;6380:53;6425:7;6416:6;6405:9;6401:22;6380:53;:::i;:::-;6370:63;;6326:117;6482:2;6508:53;6553:7;6544:6;6533:9;6529:22;6508:53;:::i;:::-;6498:63;;6453:118;6104:474;;;;;:::o;6584:60::-;6612:3;6633:5;6626:12;;6584:60;;;:::o;6650:142::-;6700:9;6733:53;6751:34;6760:24;6778:5;6760:24;:::i;:::-;6751:34;:::i;:::-;6733:53;:::i;:::-;6720:66;;6650:142;;;:::o;6798:126::-;6848:9;6881:37;6912:5;6881:37;:::i;:::-;6868:50;;6798:126;;;:::o;6930:146::-;7000:9;7033:37;7064:5;7033:37;:::i;:::-;7020:50;;6930:146;;;:::o;7082:171::-;7189:57;7240:5;7189:57;:::i;:::-;7184:3;7177:70;7082:171;;:::o;7259:262::-;7372:4;7410:2;7399:9;7395:18;7387:26;;7423:91;7511:1;7500:9;7496:17;7487:6;7423:91;:::i;:::-;7259:262;;;;:::o;7527:329::-;7586:6;7635:2;7623:9;7614:7;7610:23;7606:32;7603:119;;;7641:79;;:::i;:::-;7603:119;7761:1;7786:53;7831:7;7822:6;7811:9;7807:22;7786:53;:::i;:::-;7776:63;;7732:117;7527:329;;;;:::o;7862:117::-;7971:1;7968;7961:12;7985:117;8094:1;8091;8084:12;8108:180;8156:77;8153:1;8146:88;8253:4;8250:1;8243:15;8277:4;8274:1;8267:15;8294:281;8377:27;8399:4;8377:27;:::i;:::-;8369:6;8365:40;8507:6;8495:10;8492:22;8471:18;8459:10;8456:34;8453:62;8450:88;;;8518:18;;:::i;:::-;8450:88;8558:10;8554:2;8547:22;8337:238;8294:281;;:::o;8581:129::-;8615:6;8642:20;;:::i;:::-;8632:30;;8671:33;8699:4;8691:6;8671:33;:::i;:::-;8581:129;;;:::o;8716:307::-;8777:4;8867:18;8859:6;8856:30;8853:56;;;8889:18;;:::i;:::-;8853:56;8927:29;8949:6;8927:29;:::i;:::-;8919:37;;9011:4;9005;9001:15;8993:23;;8716:307;;;:::o;9029:146::-;9126:6;9121:3;9116;9103:30;9167:1;9158:6;9153:3;9149:16;9142:27;9029:146;;;:::o;9181:423::-;9258:5;9283:65;9299:48;9340:6;9299:48;:::i;:::-;9283:65;:::i;:::-;9274:74;;9371:6;9364:5;9357:21;9409:4;9402:5;9398:16;9447:3;9438:6;9433:3;9429:16;9426:25;9423:112;;;9454:79;;:::i;:::-;9423:112;9544:54;9591:6;9586:3;9581;9544:54;:::i;:::-;9264:340;9181:423;;;;;:::o;9623:338::-;9678:5;9727:3;9720:4;9712:6;9708:17;9704:27;9694:122;;9735:79;;:::i;:::-;9694:122;9852:6;9839:20;9877:78;9951:3;9943:6;9936:4;9928:6;9924:17;9877:78;:::i;:::-;9868:87;;9684:277;9623:338;;;;:::o;9967:943::-;10062:6;10070;10078;10086;10135:3;10123:9;10114:7;10110:23;10106:33;10103:120;;;10142:79;;:::i;:::-;10103:120;10262:1;10287:53;10332:7;10323:6;10312:9;10308:22;10287:53;:::i;:::-;10277:63;;10233:117;10389:2;10415:53;10460:7;10451:6;10440:9;10436:22;10415:53;:::i;:::-;10405:63;;10360:118;10517:2;10543:53;10588:7;10579:6;10568:9;10564:22;10543:53;:::i;:::-;10533:63;;10488:118;10673:2;10662:9;10658:18;10645:32;10704:18;10696:6;10693:30;10690:117;;;10726:79;;:::i;:::-;10690:117;10831:62;10885:7;10876:6;10865:9;10861:22;10831:62;:::i;:::-;10821:72;;10616:287;9967:943;;;;;;;:::o;10916:115::-;11001:23;11018:5;11001:23;:::i;:::-;10996:3;10989:36;10916:115;;:::o;11037:218::-;11128:4;11166:2;11155:9;11151:18;11143:26;;11179:69;11245:1;11234:9;11230:17;11221:6;11179:69;:::i;:::-;11037:218;;;;:::o;11261:619::-;11338:6;11346;11354;11403:2;11391:9;11382:7;11378:23;11374:32;11371:119;;;11409:79;;:::i;:::-;11371:119;11529:1;11554:53;11599:7;11590:6;11579:9;11575:22;11554:53;:::i;:::-;11544:63;;11500:117;11656:2;11682:53;11727:7;11718:6;11707:9;11703:22;11682:53;:::i;:::-;11672:63;;11627:118;11784:2;11810:53;11855:7;11846:6;11835:9;11831:22;11810:53;:::i;:::-;11800:63;;11755:118;11261:619;;;;;:::o;11886:332::-;12007:4;12045:2;12034:9;12030:18;12022:26;;12058:71;12126:1;12115:9;12111:17;12102:6;12058:71;:::i;:::-;12139:72;12207:2;12196:9;12192:18;12183:6;12139:72;:::i;:::-;11886:332;;;;;:::o;12224:149::-;12297:9;12330:37;12361:5;12330:37;:::i;:::-;12317:50;;12224:149;;;:::o;12379:177::-;12489:60;12543:5;12489:60;:::i;:::-;12484:3;12477:73;12379:177;;:::o;12562:268::-;12678:4;12716:2;12705:9;12701:18;12693:26;;12729:94;12820:1;12809:9;12805:17;12796:6;12729:94;:::i;:::-;12562:268;;;;:::o;12836:154::-;12914:9;12947:37;12978:5;12947:37;:::i;:::-;12934:50;;12836:154;;;:::o;12996:187::-;13111:65;13170:5;13111:65;:::i;:::-;13106:3;13099:78;12996:187;;:::o;13189:278::-;13310:4;13348:2;13337:9;13333:18;13325:26;;13361:99;13457:1;13446:9;13442:17;13433:6;13361:99;:::i;:::-;13189:278;;;;:::o;13473:116::-;13543:21;13558:5;13543:21;:::i;:::-;13536:5;13533:32;13523:60;;13579:1;13576;13569:12;13523:60;13473:116;:::o;13595:133::-;13638:5;13676:6;13663:20;13654:29;;13692:30;13716:5;13692:30;:::i;:::-;13595:133;;;;:::o;13734:468::-;13799:6;13807;13856:2;13844:9;13835:7;13831:23;13827:32;13824:119;;;13862:79;;:::i;:::-;13824:119;13982:1;14007:53;14052:7;14043:6;14032:9;14028:22;14007:53;:::i;:::-;13997:63;;13953:117;14109:2;14135:50;14177:7;14168:6;14157:9;14153:22;14135:50;:::i;:::-;14125:60;;14080:115;13734:468;;;;;:::o;14208:::-;14273:6;14281;14330:2;14318:9;14309:7;14305:23;14301:32;14298:119;;;14336:79;;:::i;:::-;14298:119;14456:1;14481:53;14526:7;14517:6;14506:9;14502:22;14481:53;:::i;:::-;14471:63;;14427:117;14583:2;14609:50;14651:7;14642:6;14631:9;14627:22;14609:50;:::i;:::-;14599:60;;14554:115;14208:468;;;;;:::o;14682:323::-;14738:6;14787:2;14775:9;14766:7;14762:23;14758:32;14755:119;;;14793:79;;:::i;:::-;14755:119;14913:1;14938:50;14980:7;14971:6;14960:9;14956:22;14938:50;:::i;:::-;14928:60;;14884:114;14682:323;;;;:::o;15011:308::-;15073:4;15163:18;15155:6;15152:30;15149:56;;;15185:18;;:::i;:::-;15149:56;15223:29;15245:6;15223:29;:::i;:::-;15215:37;;15307:4;15301;15297:15;15289:23;;15011:308;;;:::o;15325:425::-;15403:5;15428:66;15444:49;15486:6;15444:49;:::i;:::-;15428:66;:::i;:::-;15419:75;;15517:6;15510:5;15503:21;15555:4;15548:5;15544:16;15593:3;15584:6;15579:3;15575:16;15572:25;15569:112;;;15600:79;;:::i;:::-;15569:112;15690:54;15737:6;15732:3;15727;15690:54;:::i;:::-;15409:341;15325:425;;;;;:::o;15770:340::-;15826:5;15875:3;15868:4;15860:6;15856:17;15852:27;15842:122;;15883:79;;:::i;:::-;15842:122;16000:6;15987:20;16025:79;16100:3;16092:6;16085:4;16077:6;16073:17;16025:79;:::i;:::-;16016:88;;15832:278;15770:340;;;;:::o;16116:654::-;16194:6;16202;16251:2;16239:9;16230:7;16226:23;16222:32;16219:119;;;16257:79;;:::i;:::-;16219:119;16377:1;16402:53;16447:7;16438:6;16427:9;16423:22;16402:53;:::i;:::-;16392:63;;16348:117;16532:2;16521:9;16517:18;16504:32;16563:18;16555:6;16552:30;16549:117;;;16585:79;;:::i;:::-;16549:117;16690:63;16745:7;16736:6;16725:9;16721:22;16690:63;:::i;:::-;16680:73;;16475:288;16116:654;;;;;:::o;16776:474::-;16844:6;16852;16901:2;16889:9;16880:7;16876:23;16872:32;16869:119;;;16907:79;;:::i;:::-;16869:119;17027:1;17052:53;17097:7;17088:6;17077:9;17073:22;17052:53;:::i;:::-;17042:63;;16998:117;17154:2;17180:53;17225:7;17216:6;17205:9;17201:22;17180:53;:::i;:::-;17170:63;;17125:118;16776:474;;;;;:::o;17256:180::-;17304:77;17301:1;17294:88;17401:4;17398:1;17391:15;17425:4;17422:1;17415:15;17442:320;17486:6;17523:1;17517:4;17513:12;17503:22;;17570:1;17564:4;17560:12;17591:18;17581:81;;17647:4;17639:6;17635:17;17625:27;;17581:81;17709:2;17701:6;17698:14;17678:18;17675:38;17672:84;;17728:18;;:::i;:::-;17672:84;17493:269;17442:320;;;:::o;17768:231::-;17908:34;17904:1;17896:6;17892:14;17885:58;17977:14;17972:2;17964:6;17960:15;17953:39;17768:231;:::o;18005:366::-;18147:3;18168:67;18232:2;18227:3;18168:67;:::i;:::-;18161:74;;18244:93;18333:3;18244:93;:::i;:::-;18362:2;18357:3;18353:12;18346:19;;18005:366;;;:::o;18377:419::-;18543:4;18581:2;18570:9;18566:18;18558:26;;18630:9;18624:4;18620:20;18616:1;18605:9;18601:17;18594:47;18658:131;18784:4;18658:131;:::i;:::-;18650:139;;18377:419;;;:::o;18802:178::-;18942:30;18938:1;18930:6;18926:14;18919:54;18802:178;:::o;18986:366::-;19128:3;19149:67;19213:2;19208:3;19149:67;:::i;:::-;19142:74;;19225:93;19314:3;19225:93;:::i;:::-;19343:2;19338:3;19334:12;19327:19;;18986:366;;;:::o;19358:419::-;19524:4;19562:2;19551:9;19547:18;19539:26;;19611:9;19605:4;19601:20;19597:1;19586:9;19582:17;19575:47;19639:131;19765:4;19639:131;:::i;:::-;19631:139;;19358:419;;;:::o;19783:180::-;19831:77;19828:1;19821:88;19928:4;19925:1;19918:15;19952:4;19949:1;19942:15;19969:410;20009:7;20032:20;20050:1;20032:20;:::i;:::-;20027:25;;20066:20;20084:1;20066:20;:::i;:::-;20061:25;;20121:1;20118;20114:9;20143:30;20161:11;20143:30;:::i;:::-;20132:41;;20322:1;20313:7;20309:15;20306:1;20303:22;20283:1;20276:9;20256:83;20233:139;;20352:18;;:::i;:::-;20233:139;20017:362;19969:410;;;;:::o;20385:180::-;20433:77;20430:1;20423:88;20530:4;20527:1;20520:15;20554:4;20551:1;20544:15;20571:185;20611:1;20628:20;20646:1;20628:20;:::i;:::-;20623:25;;20662:20;20680:1;20662:20;:::i;:::-;20657:25;;20701:1;20691:35;;20706:18;;:::i;:::-;20691:35;20748:1;20745;20741:9;20736:14;;20571:185;;;;:::o;20762:230::-;20902:34;20898:1;20890:6;20886:14;20879:58;20971:13;20966:2;20958:6;20954:15;20947:38;20762:230;:::o;20998:366::-;21140:3;21161:67;21225:2;21220:3;21161:67;:::i;:::-;21154:74;;21237:93;21326:3;21237:93;:::i;:::-;21355:2;21350:3;21346:12;21339:19;;20998:366;;;:::o;21370:419::-;21536:4;21574:2;21563:9;21559:18;21551:26;;21623:9;21617:4;21613:20;21609:1;21598:9;21594:17;21587:47;21651:131;21777:4;21651:131;:::i;:::-;21643:139;;21370:419;;;:::o;21795:231::-;21935:34;21931:1;21923:6;21919:14;21912:58;22004:14;21999:2;21991:6;21987:15;21980:39;21795:231;:::o;22032:366::-;22174:3;22195:67;22259:2;22254:3;22195:67;:::i;:::-;22188:74;;22271:93;22360:3;22271:93;:::i;:::-;22389:2;22384:3;22380:12;22373:19;;22032:366;;;:::o;22404:419::-;22570:4;22608:2;22597:9;22593:18;22585:26;;22657:9;22651:4;22647:20;22643:1;22632:9;22628:17;22621:47;22685:131;22811:4;22685:131;:::i;:::-;22677:139;;22404:419;;;:::o;22829:180::-;22877:77;22874:1;22867:88;22974:4;22971:1;22964:15;22998:4;22995:1;22988:15;23015:228;23155:34;23151:1;23143:6;23139:14;23132:58;23224:11;23219:2;23211:6;23207:15;23200:36;23015:228;:::o;23249:366::-;23391:3;23412:67;23476:2;23471:3;23412:67;:::i;:::-;23405:74;;23488:93;23577:3;23488:93;:::i;:::-;23606:2;23601:3;23597:12;23590:19;;23249:366;;;:::o;23621:419::-;23787:4;23825:2;23814:9;23810:18;23802:26;;23874:9;23868:4;23864:20;23860:1;23849:9;23845:17;23838:47;23902:131;24028:4;23902:131;:::i;:::-;23894:139;;23621:419;;;:::o;24046:194::-;24086:4;24106:20;24124:1;24106:20;:::i;:::-;24101:25;;24140:20;24158:1;24140:20;:::i;:::-;24135:25;;24184:1;24181;24177:9;24169:17;;24208:1;24202:4;24199:11;24196:37;;;24213:18;;:::i;:::-;24196:37;24046:194;;;;:::o;24246:222::-;24386:34;24382:1;24374:6;24370:14;24363:58;24455:5;24450:2;24442:6;24438:15;24431:30;24246:222;:::o;24474:366::-;24616:3;24637:67;24701:2;24696:3;24637:67;:::i;:::-;24630:74;;24713:93;24802:3;24713:93;:::i;:::-;24831:2;24826:3;24822:12;24815:19;;24474:366;;;:::o;24846:419::-;25012:4;25050:2;25039:9;25035:18;25027:26;;25099:9;25093:4;25089:20;25085:1;25074:9;25070:17;25063:47;25127:131;25253:4;25127:131;:::i;:::-;25119:139;;24846:419;;;:::o;25271:229::-;25411:34;25407:1;25399:6;25395:14;25388:58;25480:12;25475:2;25467:6;25463:15;25456:37;25271:229;:::o;25506:366::-;25648:3;25669:67;25733:2;25728:3;25669:67;:::i;:::-;25662:74;;25745:93;25834:3;25745:93;:::i;:::-;25863:2;25858:3;25854:12;25847:19;;25506:366;;;:::o;25878:419::-;26044:4;26082:2;26071:9;26067:18;26059:26;;26131:9;26125:4;26121:20;26117:1;26106:9;26102:17;26095:47;26159:131;26285:4;26159:131;:::i;:::-;26151:139;;25878:419;;;:::o;26303:236::-;26443:34;26439:1;26431:6;26427:14;26420:58;26512:19;26507:2;26499:6;26495:15;26488:44;26303:236;:::o;26545:366::-;26687:3;26708:67;26772:2;26767:3;26708:67;:::i;:::-;26701:74;;26784:93;26873:3;26784:93;:::i;:::-;26902:2;26897:3;26893:12;26886:19;;26545:366;;;:::o;26917:419::-;27083:4;27121:2;27110:9;27106:18;27098:26;;27170:9;27164:4;27160:20;27156:1;27145:9;27141:17;27134:47;27198:131;27324:4;27198:131;:::i;:::-;27190:139;;26917:419;;;:::o;27342:234::-;27482:34;27478:1;27470:6;27466:14;27459:58;27551:17;27546:2;27538:6;27534:15;27527:42;27342:234;:::o;27582:366::-;27724:3;27745:67;27809:2;27804:3;27745:67;:::i;:::-;27738:74;;27821:93;27910:3;27821:93;:::i;:::-;27939:2;27934:3;27930:12;27923:19;;27582:366;;;:::o;27954:419::-;28120:4;28158:2;28147:9;28143:18;28135:26;;28207:9;28201:4;28197:20;28193:1;28182:9;28178:17;28171:47;28235:131;28361:4;28235:131;:::i;:::-;28227:139;;27954:419;;;:::o;28379:143::-;28436:5;28467:6;28461:13;28452:22;;28483:33;28510:5;28483:33;:::i;:::-;28379:143;;;;:::o;28528:351::-;28598:6;28647:2;28635:9;28626:7;28622:23;28618:32;28615:119;;;28653:79;;:::i;:::-;28615:119;28773:1;28798:64;28854:7;28845:6;28834:9;28830:22;28798:64;:::i;:::-;28788:74;;28744:128;28528:351;;;;:::o;28885:442::-;29034:4;29072:2;29061:9;29057:18;29049:26;;29085:71;29153:1;29142:9;29138:17;29129:6;29085:71;:::i;:::-;29166:72;29234:2;29223:9;29219:18;29210:6;29166:72;:::i;:::-;29248;29316:2;29305:9;29301:18;29292:6;29248:72;:::i;:::-;28885:442;;;;;;:::o;29333:434::-;29422:5;29447:66;29463:49;29505:6;29463:49;:::i;:::-;29447:66;:::i;:::-;29438:75;;29536:6;29529:5;29522:21;29574:4;29567:5;29563:16;29612:3;29603:6;29598:3;29594:16;29591:25;29588:112;;;29619:79;;:::i;:::-;29588:112;29709:52;29754:6;29749:3;29744;29709:52;:::i;:::-;29428:339;29333:434;;;;;:::o;29787:355::-;29854:5;29903:3;29896:4;29888:6;29884:17;29880:27;29870:122;;29911:79;;:::i;:::-;29870:122;30021:6;30015:13;30046:90;30132:3;30124:6;30117:4;30109:6;30105:17;30046:90;:::i;:::-;30037:99;;29860:282;29787:355;;;;:::o;30148:524::-;30228:6;30277:2;30265:9;30256:7;30252:23;30248:32;30245:119;;;30283:79;;:::i;:::-;30245:119;30424:1;30413:9;30409:17;30403:24;30454:18;30446:6;30443:30;30440:117;;;30476:79;;:::i;:::-;30440:117;30581:74;30647:7;30638:6;30627:9;30623:22;30581:74;:::i;:::-;30571:84;;30374:291;30148:524;;;;:::o;30678:148::-;30780:11;30817:3;30802:18;;30678:148;;;;:::o;30832:390::-;30938:3;30966:39;30999:5;30966:39;:::i;:::-;31021:89;31103:6;31098:3;31021:89;:::i;:::-;31014:96;;31119:65;31177:6;31172:3;31165:4;31158:5;31154:16;31119:65;:::i;:::-;31209:6;31204:3;31200:16;31193:23;;30942:280;30832:390;;;;:::o;31228:275::-;31360:3;31382:95;31473:3;31464:6;31382:95;:::i;:::-;31375:102;;31494:3;31487:10;;31228:275;;;;:::o;31509:664::-;31714:4;31752:3;31741:9;31737:19;31729:27;;31766:71;31834:1;31823:9;31819:17;31810:6;31766:71;:::i;:::-;31847:72;31915:2;31904:9;31900:18;31891:6;31847:72;:::i;:::-;31929;31997:2;31986:9;31982:18;31973:6;31929:72;:::i;:::-;32011;32079:2;32068:9;32064:18;32055:6;32011:72;:::i;:::-;32093:73;32161:3;32150:9;32146:19;32137:6;32093:73;:::i;:::-;31509:664;;;;;;;;:::o;32179:143::-;32236:5;32267:6;32261:13;32252:22;;32283:33;32310:5;32283:33;:::i;:::-;32179:143;;;;:::o;32328:351::-;32398:6;32447:2;32435:9;32426:7;32422:23;32418:32;32415:119;;;32453:79;;:::i;:::-;32415:119;32573:1;32598:64;32654:7;32645:6;32634:9;32630:22;32598:64;:::i;:::-;32588:74;;32544:128;32328:351;;;;:::o;32685:442::-;32834:4;32872:2;32861:9;32857:18;32849:26;;32885:71;32953:1;32942:9;32938:17;32929:6;32885:71;:::i;:::-;32966:72;33034:2;33023:9;33019:18;33010:6;32966:72;:::i;:::-;33048;33116:2;33105:9;33101:18;33092:6;33048:72;:::i;:::-;32685:442;;;;;;:::o;33133:77::-;33170:7;33199:5;33188:16;;33133:77;;;:::o;33216:79::-;33255:7;33284:5;33273:16;;33216:79;;;:::o;33301:157::-;33406:45;33426:24;33444:5;33426:24;:::i;:::-;33406:45;:::i;:::-;33401:3;33394:58;33301:157;;:::o;33464:256::-;33576:3;33591:75;33662:3;33653:6;33591:75;:::i;:::-;33691:2;33686:3;33682:12;33675:19;;33711:3;33704:10;;33464:256;;;;:::o;33726:191::-;33766:3;33785:20;33803:1;33785:20;:::i;:::-;33780:25;;33819:20;33837:1;33819:20;:::i;:::-;33814:25;;33862:1;33859;33855:9;33848:16;;33883:3;33880:1;33877:10;33874:36;;;33890:18;;:::i;:::-;33874:36;33726:191;;;;:::o;33923:141::-;33972:4;33995:3;33987:11;;34018:3;34015:1;34008:14;34052:4;34049:1;34039:18;34031:26;;33923:141;;;:::o;34070:93::-;34107:6;34154:2;34149;34142:5;34138:14;34134:23;34124:33;;34070:93;;;:::o;34169:107::-;34213:8;34263:5;34257:4;34253:16;34232:37;;34169:107;;;;:::o;34282:393::-;34351:6;34401:1;34389:10;34385:18;34424:97;34454:66;34443:9;34424:97;:::i;:::-;34542:39;34572:8;34561:9;34542:39;:::i;:::-;34530:51;;34614:4;34610:9;34603:5;34599:21;34590:30;;34663:4;34653:8;34649:19;34642:5;34639:30;34629:40;;34358:317;;34282:393;;;;;:::o;34681:142::-;34731:9;34764:53;34782:34;34791:24;34809:5;34791:24;:::i;:::-;34782:34;:::i;:::-;34764:53;:::i;:::-;34751:66;;34681:142;;;:::o;34829:75::-;34872:3;34893:5;34886:12;;34829:75;;;:::o;34910:269::-;35020:39;35051:7;35020:39;:::i;:::-;35081:91;35130:41;35154:16;35130:41;:::i;:::-;35122:6;35115:4;35109:11;35081:91;:::i;:::-;35075:4;35068:105;34986:193;34910:269;;;:::o;35185:73::-;35230:3;35185:73;:::o;35264:189::-;35341:32;;:::i;:::-;35382:65;35440:6;35432;35426:4;35382:65;:::i;:::-;35317:136;35264:189;;:::o;35459:186::-;35519:120;35536:3;35529:5;35526:14;35519:120;;;35590:39;35627:1;35620:5;35590:39;:::i;:::-;35563:1;35556:5;35552:13;35543:22;;35519:120;;;35459:186;;:::o;35651:543::-;35752:2;35747:3;35744:11;35741:446;;;35786:38;35818:5;35786:38;:::i;:::-;35870:29;35888:10;35870:29;:::i;:::-;35860:8;35856:44;36053:2;36041:10;36038:18;36035:49;;;36074:8;36059:23;;36035:49;36097:80;36153:22;36171:3;36153:22;:::i;:::-;36143:8;36139:37;36126:11;36097:80;:::i;:::-;35756:431;;35741:446;35651:543;;;:::o;36200:117::-;36254:8;36304:5;36298:4;36294:16;36273:37;;36200:117;;;;:::o;36323:169::-;36367:6;36400:51;36448:1;36444:6;36436:5;36433:1;36429:13;36400:51;:::i;:::-;36396:56;36481:4;36475;36471:15;36461:25;;36374:118;36323:169;;;;:::o;36497:295::-;36573:4;36719:29;36744:3;36738:4;36719:29;:::i;:::-;36711:37;;36781:3;36778:1;36774:11;36768:4;36765:21;36757:29;;36497:295;;;;:::o;36797:1395::-;36914:37;36947:3;36914:37;:::i;:::-;37016:18;37008:6;37005:30;37002:56;;;37038:18;;:::i;:::-;37002:56;37082:38;37114:4;37108:11;37082:38;:::i;:::-;37167:67;37227:6;37219;37213:4;37167:67;:::i;:::-;37261:1;37285:4;37272:17;;37317:2;37309:6;37306:14;37334:1;37329:618;;;;37991:1;38008:6;38005:77;;;38057:9;38052:3;38048:19;38042:26;38033:35;;38005:77;38108:67;38168:6;38161:5;38108:67;:::i;:::-;38102:4;38095:81;37964:222;37299:887;;37329:618;37381:4;37377:9;37369:6;37365:22;37415:37;37447:4;37415:37;:::i;:::-;37474:1;37488:208;37502:7;37499:1;37496:14;37488:208;;;37581:9;37576:3;37572:19;37566:26;37558:6;37551:42;37632:1;37624:6;37620:14;37610:24;;37679:2;37668:9;37664:18;37651:31;;37525:4;37522:1;37518:12;37513:17;;37488:208;;;37724:6;37715:7;37712:19;37709:179;;;37782:9;37777:3;37773:19;37767:26;37825:48;37867:4;37859:6;37855:17;37844:9;37825:48;:::i;:::-;37817:6;37810:64;37732:156;37709:179;37934:1;37930;37922:6;37918:14;37914:22;37908:4;37901:36;37336:611;;;37299:887;;36889:1303;;;36797:1395;;:::o;38198:225::-;38338:34;38334:1;38326:6;38322:14;38315:58;38407:8;38402:2;38394:6;38390:15;38383:33;38198:225;:::o;38429:366::-;38571:3;38592:67;38656:2;38651:3;38592:67;:::i;:::-;38585:74;;38668:93;38757:3;38668:93;:::i;:::-;38786:2;38781:3;38777:12;38770:19;;38429:366;;;:::o;38801:419::-;38967:4;39005:2;38994:9;38990:18;38982:26;;39054:9;39048:4;39044:20;39040:1;39029:9;39025:17;39018:47;39082:131;39208:4;39082:131;:::i;:::-;39074:139;;38801:419;;;:::o;39226:182::-;39366:34;39362:1;39354:6;39350:14;39343:58;39226:182;:::o;39414:366::-;39556:3;39577:67;39641:2;39636:3;39577:67;:::i;:::-;39570:74;;39653:93;39742:3;39653:93;:::i;:::-;39771:2;39766:3;39762:12;39755:19;;39414:366;;;:::o;39786:419::-;39952:4;39990:2;39979:9;39975:18;39967:26;;40039:9;40033:4;40029:20;40025:1;40014:9;40010:17;40003:47;40067:131;40193:4;40067:131;:::i;:::-;40059:139;;39786:419;;;:::o;40211:229::-;40351:34;40347:1;40339:6;40335:14;40328:58;40420:12;40415:2;40407:6;40403:15;40396:37;40211:229;:::o;40446:366::-;40588:3;40609:67;40673:2;40668:3;40609:67;:::i;:::-;40602:74;;40685:93;40774:3;40685:93;:::i;:::-;40803:2;40798:3;40794:12;40787:19;;40446:366;;;:::o;40818:419::-;40984:4;41022:2;41011:9;41007:18;40999:26;;41071:9;41065:4;41061:20;41057:1;41046:9;41042:17;41035:47;41099:131;41225:4;41099:131;:::i;:::-;41091:139;;40818:419;;;:::o;41243:175::-;41383:27;41379:1;41371:6;41367:14;41360:51;41243:175;:::o;41424:366::-;41566:3;41587:67;41651:2;41646:3;41587:67;:::i;:::-;41580:74;;41663:93;41752:3;41663:93;:::i;:::-;41781:2;41776:3;41772:12;41765:19;;41424:366;;;:::o;41796:419::-;41962:4;42000:2;41989:9;41985:18;41977:26;;42049:9;42043:4;42039:20;42035:1;42024:9;42020:17;42013:47;42077:131;42203:4;42077:131;:::i;:::-;42069:139;;41796:419;;;:::o;42221:220::-;42361:34;42357:1;42349:6;42345:14;42338:58;42430:3;42425:2;42417:6;42413:15;42406:28;42221:220;:::o;42447:366::-;42589:3;42610:67;42674:2;42669:3;42610:67;:::i;:::-;42603:74;;42686:93;42775:3;42686:93;:::i;:::-;42804:2;42799:3;42795:12;42788:19;;42447:366;;;:::o;42819:419::-;42985:4;43023:2;43012:9;43008:18;43000:26;;43072:9;43066:4;43062:20;43058:1;43047:9;43043:17;43036:47;43100:131;43226:4;43100:131;:::i;:::-;43092:139;;42819:419;;;:::o;43244:243::-;43384:34;43380:1;43372:6;43368:14;43361:58;43453:26;43448:2;43440:6;43436:15;43429:51;43244:243;:::o;43493:366::-;43635:3;43656:67;43720:2;43715:3;43656:67;:::i;:::-;43649:74;;43732:93;43821:3;43732:93;:::i;:::-;43850:2;43845:3;43841:12;43834:19;;43493:366;;;:::o;43865:419::-;44031:4;44069:2;44058:9;44054:18;44046:26;;44118:9;44112:4;44108:20;44104:1;44093:9;44089:17;44082:47;44146:131;44272:4;44146:131;:::i;:::-;44138:139;;43865:419;;;:::o;44290:176::-;44322:1;44339:20;44357:1;44339:20;:::i;:::-;44334:25;;44373:20;44391:1;44373:20;:::i;:::-;44368:25;;44412:1;44402:35;;44417:18;;:::i;:::-;44402:35;44458:1;44455;44451:9;44446:14;;44290:176;;;;:::o;44472:175::-;44612:27;44608:1;44600:6;44596:14;44589:51;44472:175;:::o;44653:366::-;44795:3;44816:67;44880:2;44875:3;44816:67;:::i;:::-;44809:74;;44892:93;44981:3;44892:93;:::i;:::-;45010:2;45005:3;45001:12;44994:19;;44653:366;;;:::o;45025:419::-;45191:4;45229:2;45218:9;45214:18;45206:26;;45278:9;45272:4;45268:20;45264:1;45253:9;45249:17;45242:47;45306:131;45432:4;45306:131;:::i;:::-;45298:139;;45025:419;;;:::o;45450:231::-;45590:34;45586:1;45578:6;45574:14;45567:58;45659:14;45654:2;45646:6;45642:15;45635:39;45450:231;:::o;45687:366::-;45829:3;45850:67;45914:2;45909:3;45850:67;:::i;:::-;45843:74;;45926:93;46015:3;45926:93;:::i;:::-;46044:2;46039:3;46035:12;46028:19;;45687:366;;;:::o;46059:419::-;46225:4;46263:2;46252:9;46248:18;46240:26;;46312:9;46306:4;46302:20;46298:1;46287:9;46283:17;46276:47;46340:131;46466:4;46340:131;:::i;:::-;46332:139;;46059:419;;;:::o;46484:237::-;46624:34;46620:1;46612:6;46608:14;46601:58;46693:20;46688:2;46680:6;46676:15;46669:45;46484:237;:::o;46727:366::-;46869:3;46890:67;46954:2;46949:3;46890:67;:::i;:::-;46883:74;;46966:93;47055:3;46966:93;:::i;:::-;47084:2;47079:3;47075:12;47068:19;;46727:366;;;:::o;47099:419::-;47265:4;47303:2;47292:9;47288:18;47280:26;;47352:9;47346:4;47342:20;47338:1;47327:9;47323:17;47316:47;47380:131;47506:4;47380:131;:::i;:::-;47372:139;;47099:419;;;:::o;47524:182::-;47664:34;47660:1;47652:6;47648:14;47641:58;47524:182;:::o;47712:366::-;47854:3;47875:67;47939:2;47934:3;47875:67;:::i;:::-;47868:74;;47951:93;48040:3;47951:93;:::i;:::-;48069:2;48064:3;48060:12;48053:19;;47712:366;;;:::o;48084:419::-;48250:4;48288:2;48277:9;48273:18;48265:26;;48337:9;48331:4;48327:20;48323:1;48312:9;48308:17;48301:47;48365:131;48491:4;48365:131;:::i;:::-;48357:139;;48084:419;;;:::o;48509:178::-;48649:30;48645:1;48637:6;48633:14;48626:54;48509:178;:::o;48693:366::-;48835:3;48856:67;48920:2;48915:3;48856:67;:::i;:::-;48849:74;;48932:93;49021:3;48932:93;:::i;:::-;49050:2;49045:3;49041:12;49034:19;;48693:366;;;:::o;49065:419::-;49231:4;49269:2;49258:9;49254:18;49246:26;;49318:9;49312:4;49308:20;49304:1;49293:9;49289:17;49282:47;49346:131;49472:4;49346:131;:::i;:::-;49338:139;;49065:419;;;:::o;49490:228::-;49630:34;49626:1;49618:6;49614:14;49607:58;49699:11;49694:2;49686:6;49682:15;49675:36;49490:228;:::o;49724:366::-;49866:3;49887:67;49951:2;49946:3;49887:67;:::i;:::-;49880:74;;49963:93;50052:3;49963:93;:::i;:::-;50081:2;50076:3;50072:12;50065:19;;49724:366;;;:::o;50096:419::-;50262:4;50300:2;50289:9;50285:18;50277:26;;50349:9;50343:4;50339:20;50335:1;50324:9;50320:17;50313:47;50377:131;50503:4;50377:131;:::i;:::-;50369:139;;50096:419;;;:::o;50521:223::-;50661:34;50657:1;50649:6;50645:14;50638:58;50730:6;50725:2;50717:6;50713:15;50706:31;50521:223;:::o;50750:366::-;50892:3;50913:67;50977:2;50972:3;50913:67;:::i;:::-;50906:74;;50989:93;51078:3;50989:93;:::i;:::-;51107:2;51102:3;51098:12;51091:19;;50750:366;;;:::o;51122:419::-;51288:4;51326:2;51315:9;51311:18;51303:26;;51375:9;51369:4;51365:20;51361:1;51350:9;51346:17;51339:47;51403:131;51529:4;51403:131;:::i;:::-;51395:139;;51122:419;;;:::o;51547:76::-;51583:7;51612:5;51601:16;;51547:76;;;:::o;51629:375::-;51668:3;51687:19;51704:1;51687:19;:::i;:::-;51682:24;;51720:19;51737:1;51720:19;:::i;:::-;51715:24;;51762:1;51759;51755:9;51748:16;;51960:1;51955:3;51951:11;51944:19;51940:1;51937;51933:9;51929:35;51912:1;51907:3;51903:11;51898:1;51895;51891:9;51884:17;51880:35;51864:110;51861:136;;;51977:18;;:::i;:::-;51861:136;51629:375;;;;:::o;52010:556::-;52049:7;52072:19;52089:1;52072:19;:::i;:::-;52067:24;;52105:19;52122:1;52105:19;:::i;:::-;52100:24;;52159:1;52156;52152:9;52181:29;52198:11;52181:29;:::i;:::-;52170:40;;52268:66;52265:1;52262:73;52258:1;52255;52251:9;52247:89;52244:115;;;52339:18;;:::i;:::-;52244:115;52509:1;52500:7;52495:16;52492:1;52489:23;52469:1;52462:9;52442:84;52419:140;;52539:18;;:::i;:::-;52419:140;52057:509;52010:556;;;;:::o;52572:385::-;52611:1;52628:19;52645:1;52628:19;:::i;:::-;52623:24;;52661:19;52678:1;52661:19;:::i;:::-;52656:24;;52699:1;52689:35;;52704:18;;:::i;:::-;52689:35;52890:1;52887;52883:9;52880:1;52877:16;52796:66;52793:1;52790:73;52773:130;52770:156;;;52906:18;;:::i;:::-;52770:156;52949:1;52946;52941:10;52936:15;;52572:385;;;;:::o;52963:372::-;53002:4;53022:19;53039:1;53022:19;:::i;:::-;53017:24;;53055:19;53072:1;53055:19;:::i;:::-;53050:24;;53098:1;53095;53091:9;53083:17;;53292:1;53286:4;53282:12;53278:1;53275;53271:9;53267:28;53250:1;53244:4;53240:12;53235:1;53232;53228:9;53221:17;53217:36;53201:104;53198:130;;;53308:18;;:::i;:::-;53198:130;52963:372;;;;:::o;53341:98::-;53392:6;53426:5;53420:12;53410:22;;53341:98;;;:::o;53445:168::-;53528:11;53562:6;53557:3;53550:19;53602:4;53597:3;53593:14;53578:29;;53445:168;;;;:::o;53619:373::-;53705:3;53733:38;53765:5;53733:38;:::i;:::-;53787:70;53850:6;53845:3;53787:70;:::i;:::-;53780:77;;53866:65;53924:6;53919:3;53912:4;53905:5;53901:16;53866:65;:::i;:::-;53956:29;53978:6;53956:29;:::i;:::-;53951:3;53947:39;53940:46;;53709:283;53619:373;;;;:::o;53998:640::-;54193:4;54231:3;54220:9;54216:19;54208:27;;54245:71;54313:1;54302:9;54298:17;54289:6;54245:71;:::i;:::-;54326:72;54394:2;54383:9;54379:18;54370:6;54326:72;:::i;:::-;54408;54476:2;54465:9;54461:18;54452:6;54408:72;:::i;:::-;54527:9;54521:4;54517:20;54512:2;54501:9;54497:18;54490:48;54555:76;54626:4;54617:6;54555:76;:::i;:::-;54547:84;;53998:640;;;;;;;:::o;54644:141::-;54700:5;54731:6;54725:13;54716:22;;54747:32;54773:5;54747:32;:::i;:::-;54644:141;;;;:::o;54791:349::-;54860:6;54909:2;54897:9;54888:7;54884:23;54880:32;54877:119;;;54915:79;;:::i;:::-;54877:119;55035:1;55060:63;55115:7;55106:6;55095:9;55091:22;55060:63;:::i;:::-;55050:73;;55006:127;54791:349;;;;:::o;55146:179::-;55286:31;55282:1;55274:6;55270:14;55263:55;55146:179;:::o;55331:366::-;55473:3;55494:67;55558:2;55553:3;55494:67;:::i;:::-;55487:74;;55570:93;55659:3;55570:93;:::i;:::-;55688:2;55683:3;55679:12;55672:19;;55331:366;;;:::o;55703:419::-;55869:4;55907:2;55896:9;55892:18;55884:26;;55956:9;55950:4;55946:20;55942:1;55931:9;55927:17;55920:47;55984:131;56110:4;55984:131;:::i;:::-;55976:139;;55703:419;;;:::o;56128:180::-;56176:77;56173:1;56166:88;56273:4;56270:1;56263:15;56297:4;56294:1;56287:15

Swarm Source

ipfs://0c95f9b480b843379147a79d8964da7180eba96d408db04209942a5f22d9fa92
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.