false
true
0

Contract Address Details

0x54f667dB585b7B10347429C72c36c8B59aB441cb

Token
Good Old Fashioned Un Registered Security (GOFURS)
Creator
0xfdf2e7–e5e0da at 0x63a2c9–b1e3ad
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
12,140 Transactions
Transfers
0 Transfers
Gas Used
0
Last Balance Update
25930063
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
Contract name:
GoodOldFashionedUnRegisteredSecurity




Optimization enabled
false
Compiler version
v0.8.24+commit.e11b9ed9




EVM Version
default




Verified at
2024-02-09T09:18:43.937961Z

Constructor Arguments

0x000000000000000000000000fdf2e77f113a87d419b25659e8787ab019e5e0da

Arg [0] (address) : 0xfdf2e77f113a87d419b25659e8787ab019e5e0da

              

Contract source code

/**
 *Submitted for verification at Etherscan.io on 2024-02-09
*/

// File: @openzeppelin/contracts/utils/math/SignedMath.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;



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

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

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

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

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

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

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

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

// File: contracts/Gofurs.sol

//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;


abstract contract Ownable {
    event OwnershipTransferred(address indexed user, address indexed newOwner);

    error Unauthorized();
    error InvalidOwner();

    address public owner;

    modifier onlyOwner() virtual {
        if (msg.sender != owner) revert Unauthorized();

        _;
    }

    constructor(address _owner) {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    function transferOwnership(address _owner) public virtual onlyOwner {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(msg.sender, _owner);
    }

    function revokeOwnership() public virtual onlyOwner {
        owner = address(0);

        emit OwnershipTransferred(msg.sender, address(0));
    }
}

abstract contract ERC721Receiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721Receiver.onERC721Received.selector;
    }
}

/// @notice ERC404
///         A gas-efficient, mixed ERC20 / ERC721 implementation
///         with native liquidity and fractionalization.
///
///         This is an experimental standard designed to integrate
///         with pre-existing ERC20 / ERC721 support as smoothly as
///         possible.
///
/// @dev    In order to support full functionality of ERC20 and ERC721
///         supply assumptions are made that slightly constraint usage.
///         Ensure decimals are sufficiently large (standard 18 recommended)
///         as ids are effectively encoded in the lowest range of amounts.
///
///         NFTs are spent on ERC20 functions in a FILO queue, this is by
///         design.
///
abstract contract ERC404 is Ownable {
    // Events
    event ERC20Transfer(
        address indexed from,
        address indexed to,
        uint256 amount
    );
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 amount
    );
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed id
    );
    event ERC721Approval(
        address indexed owner,
        address indexed spender,
        uint256 indexed id
    );
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    // Errors
    error NotFound();
    error AlreadyExists();
    error InvalidRecipient();
    error InvalidSender();
    error UnsafeRecipient();

    // Metadata
    /// @dev Token name
    string public name;

    /// @dev Token symbol
    string public symbol;

    /// @dev Decimals for fractional representation
    uint8 public immutable decimals;

    /// @dev Total supply in fractionalized representation
    uint256 public immutable totalSupply;

    /// @dev Current mint counter, monotonically increasing to ensure accurate ownership
    uint256 public minted;

    // Mappings
    /// @dev Balance of user in fractional representation
    mapping(address => uint256) public balanceOf;

    /// @dev Allowance of user in fractional representation
    mapping(address => mapping(address => uint256)) public allowance;

    /// @dev Approval in native representaion
    mapping(uint256 => address) public getApproved;

    /// @dev Approval for all in native representation
    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /// @dev Owner of id in native representation
    mapping(uint256 => address) internal _ownerOf;

    /// @dev Array of owned ids in native representation
    mapping(address => uint256[]) internal _owned;

    /// @dev Tracks indices for the _owned mapping
    mapping(uint256 => uint256) internal _ownedIndex;

    /// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc)
    mapping(address => bool) public whitelist;

    // Constructor
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _totalNativeSupply,
        address _owner
    ) Ownable(_owner) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        totalSupply = _totalNativeSupply * (10 ** decimals);
    }

    /// @notice Initialization function to set pairs / etc
    ///         saving gas by avoiding mint / burn on unnecessary targets
    function setWhitelist(address target, bool state) public onlyOwner {
        whitelist[target] = state;
    }

    /// @notice Function to find owner of a given native token
    function ownerOf(uint256 id) public view virtual returns (address owner) {
        owner = _ownerOf[id];

        if (owner == address(0)) {
            revert NotFound();
        }
    }

    /// @notice tokenURI must be implemented by child contract
    function tokenURI(uint256 id) public view virtual returns (string memory);

    /// @notice Function for token approvals
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function approve(
        address spender,
        uint256 amountOrId
    ) public virtual returns (bool) {
        if (amountOrId <= minted && amountOrId > 0) {
            address owner = _ownerOf[amountOrId];

            if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) {
                revert Unauthorized();
            }

            getApproved[amountOrId] = spender;

            emit Approval(owner, spender, amountOrId);
        } else {
            allowance[msg.sender][spender] = amountOrId;

            emit Approval(msg.sender, spender, amountOrId);
        }

        return true;
    }

    /// @notice Function native approvals
    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    /// @notice Function for mixed transfers
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function transferFrom(
        address from,
        address to,
        uint256 amountOrId
    ) public virtual {
        if (amountOrId <= minted) {
            if (from != _ownerOf[amountOrId]) {
                revert InvalidSender();
            }

            if (to == address(0)) {
                revert InvalidRecipient();
            }

            if (
                msg.sender != from &&
                !isApprovedForAll[from][msg.sender] &&
                msg.sender != getApproved[amountOrId]
            ) {
                revert Unauthorized();
            }

            balanceOf[from] -= _getUnit();

            unchecked {
                balanceOf[to] += _getUnit();
            }

            _ownerOf[amountOrId] = to;
            delete getApproved[amountOrId];

            // update _owned for sender
            uint256 updatedId = _owned[from][_owned[from].length - 1];
            _owned[from][_ownedIndex[amountOrId]] = updatedId;
            // pop
            _owned[from].pop();
            // update index for the moved id
            _ownedIndex[updatedId] = _ownedIndex[amountOrId];
            // push token to to owned
            _owned[to].push(amountOrId);
            // update index for to owned
            _ownedIndex[amountOrId] = _owned[to].length - 1;

            emit Transfer(from, to, amountOrId);
            emit ERC20Transfer(from, to, _getUnit());
        } else {
            uint256 allowed = allowance[from][msg.sender];

            if (allowed != type(uint256).max)
                allowance[from][msg.sender] = allowed - amountOrId;

            _transfer(from, to, amountOrId);
        }
    }

    /// @notice Function for fractional transfers
    function transfer(
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

    /// @notice Function for native transfers with contract support
    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Function for native transfers with contract support and callback data
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Internal function for fractional transfers
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        uint256 unit = _getUnit();
        uint256 balanceBeforeSender = balanceOf[from];
        uint256 balanceBeforeReceiver = balanceOf[to];

        balanceOf[from] -= amount;

        unchecked {
            balanceOf[to] += amount;
        }

        // Skip burn for certain addresses to save gas
        if (!whitelist[from]) {
            uint256 tokens_to_burn = (balanceBeforeSender / unit) -
                (balanceOf[from] / unit);
            for (uint256 i = 0; i < tokens_to_burn; i++) {
                _burn(from);
            }
        }

        // Skip minting for certain addresses to save gas
        if (!whitelist[to]) {
            uint256 tokens_to_mint = (balanceOf[to] / unit) -
                (balanceBeforeReceiver / unit);
            for (uint256 i = 0; i < tokens_to_mint; i++) {
                _mint(to);
            }
        }

        emit ERC20Transfer(from, to, amount);
        return true;
    }

    // Internal utility logic
    function _getUnit() internal view returns (uint256) {
        return 10 ** decimals;
    }

    function _mint(address to) internal virtual {
        if (to == address(0)) {
            revert InvalidRecipient();
        }

        unchecked {
            minted++;
        }

        uint256 id = minted;

        if (_ownerOf[id] != address(0)) {
            revert AlreadyExists();
        }

        _ownerOf[id] = to;
        _owned[to].push(id);
        _ownedIndex[id] = _owned[to].length - 1;

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

    function _burn(address from) internal virtual {
        if (from == address(0)) {
            revert InvalidSender();
        }

        uint256 id = _owned[from][_owned[from].length - 1];
        _owned[from].pop();
        delete _ownedIndex[id];
        delete _ownerOf[id];
        delete getApproved[id];

        emit Transfer(from, address(0), id);
    }

    function _setNameSymbol(
        string memory _name,
        string memory _symbol
    ) internal {
        name = _name;
        symbol = _symbol;
    }
}
      
contract GoodOldFashionedUnRegisteredSecurity is ERC404 {
    string public dataURI;
    string public baseTokenURI;

    constructor(
        address _owner
    ) ERC404("Good Old Fashioned Un Registered Security", "GOFURS", 18, 10000, _owner) {
        balanceOf[_owner] = 10000 * 10 ** 18;

    }
    

    function setDataURI(string memory _dataURI) public onlyOwner {
        dataURI = _dataURI;
    }

    function setTokenURI(string memory _tokenURI) public onlyOwner {
        baseTokenURI = _tokenURI;
    }

    function setNameSymbol(
        string memory _name,
        string memory _symbol
    ) public onlyOwner {
        _setNameSymbol(_name, _symbol);
    }

    function tokenURI(uint256 id) public view override returns (string memory) {
        if (bytes(baseTokenURI).length > 0) {
            return string.concat(baseTokenURI, Strings.toString(id));
        } else {
            uint8 seed = uint8(bytes1(keccak256(abi.encodePacked(id))));
            string memory image;
            string memory name;

            if (seed <= 100) {
                image = "minty.jpeg";
                name = "Minty 'Big Bank' Burrower";
            } else if (seed <= 140) {
                image = "skyler.jpeg";
                name = "Skyler 'Buzzword' Whiskerton";
            } else if (seed <= 180) {
                image = "gizmo.jpeg";
                name = "Gizmo 'Mega Byte' Furnandez";
            } else if (seed <= 220) {
                image = "rusty.jpeg";
                name = "Rusty 'The Engine' Digwell";
            } else if (seed <= 240) {
                image = "camo.jpeg";
                name = "Camo 'Lockdown' McTunnel";    
            } else if (seed <= 255) {
                image = "neon.jpeg";
                name = "Neon 'Flash Drive' Glowpaw";
            }

            string memory jsonPreImage = string.concat(
                string.concat(
                    string.concat('{"name": "GOFURS #', Strings.toString(id)),
                    '","description":"A Good Old Fashioned Un Registered Security, enabled by ERC404.","external_url":"https://gofurs.cash","image":"'
                ),
                string.concat(dataURI, image)
            );
            string memory jsonPostImage = string.concat(
                '","attributes":[{"trait_type":"Name","value":"',
                name
            );
            string memory jsonPostTraits = '"}]}';

            return
                string.concat(
                    "data:application/json;utf8,",
                    string.concat(
                        string.concat(jsonPreImage, jsonPostImage),
                        jsonPostTraits
                    )
                );
        }
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_owner","internalType":"address"}]},{"type":"error","name":"AlreadyExists","inputs":[]},{"type":"error","name":"InvalidOwner","inputs":[]},{"type":"error","name":"InvalidRecipient","inputs":[]},{"type":"error","name":"InvalidSender","inputs":[]},{"type":"error","name":"NotFound","inputs":[]},{"type":"error","name":"Unauthorized","inputs":[]},{"type":"error","name":"UnsafeRecipient","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"ApprovalForAll","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"operator","internalType":"address","indexed":true},{"type":"bool","name":"approved","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"ERC20Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"ERC721Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"id","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"id","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amountOrId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"baseTokenURI","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"dataURI","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getApproved","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isApprovedForAll","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"minted","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"owner","internalType":"address"}],"name":"ownerOf","inputs":[{"type":"uint256","name":"id","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"revokeOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"id","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"id","internalType":"uint256"},{"type":"bytes","name":"data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setApprovalForAll","inputs":[{"type":"address","name":"operator","internalType":"address"},{"type":"bool","name":"approved","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setDataURI","inputs":[{"type":"string","name":"_dataURI","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setNameSymbol","inputs":[{"type":"string","name":"_name","internalType":"string"},{"type":"string","name":"_symbol","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTokenURI","inputs":[{"type":"string","name":"_tokenURI","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setWhitelist","inputs":[{"type":"address","name":"target","internalType":"address"},{"type":"bool","name":"state","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"tokenURI","inputs":[{"type":"uint256","name":"id","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amountOrId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"_owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"whitelist","inputs":[{"type":"address","name":"","internalType":"address"}]}]
              

Contract Creation Code

Verify & Publish
0x60c060405234801562000010575f80fd5b506040516200453c3803806200453c8339818101604052810190620000369190620002a1565b60405180606001604052806029815260200162004513602991396040518060400160405280600681526020017f474f465552530000000000000000000000000000000000000000000000000000815250601261271084805f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000f3576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35084600190816200019e919062000535565b508360029081620001b0919062000535565b508260ff1660808160ff1681525050608051600a620001d09190620007a2565b82620001dd9190620007f2565b60a08181525050505050505069021e19e0c9bab240000060045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550506200083c565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200026b8262000240565b9050919050565b6200027d816200025f565b811462000288575f80fd5b50565b5f815190506200029b8162000272565b92915050565b5f60208284031215620002b957620002b86200023c565b5b5f620002c8848285016200028b565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200034d57607f821691505b60208210810362000363576200036262000308565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200038a565b620003d386836200038a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200041d620004176200041184620003eb565b620003f4565b620003eb565b9050919050565b5f819050919050565b6200043883620003fd565b62000450620004478262000424565b84845462000396565b825550505050565b5f90565b6200046662000458565b620004738184846200042d565b505050565b5b818110156200049a576200048e5f826200045c565b60018101905062000479565b5050565b601f821115620004e957620004b38162000369565b620004be846200037b565b81016020851015620004ce578190505b620004e6620004dd856200037b565b83018262000478565b50505b505050565b5f82821c905092915050565b5f6200050b5f1984600802620004ee565b1980831691505092915050565b5f620005258383620004fa565b9150826002028217905092915050565b6200054082620002d1565b67ffffffffffffffff8111156200055c576200055b620002db565b5b62000568825462000335565b620005758282856200049e565b5f60209050601f831160018114620005ab575f841562000596578287015190505b620005a2858262000518565b86555062000611565b601f198416620005bb8662000369565b5f5b82811015620005e457848901518255600182019150602085019450602081019050620005bd565b8683101562000604578489015162000600601f891682620004fa565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620006a3578086048111156200067b576200067a62000619565b5b60018516156200068b5780820291505b80810290506200069b8562000646565b94506200065b565b94509492505050565b5f82620006bd57600190506200078f565b81620006cc575f90506200078f565b8160018114620006e55760028114620006f05762000726565b60019150506200078f565b60ff84111562000705576200070462000619565b5b8360020a9150848211156200071f576200071e62000619565b5b506200078f565b5060208310610133831016604e8410600b8410161715620007605782820a9050838111156200075a576200075962000619565b5b6200078f565b6200076f848484600162000652565b9250905081840481111562000789576200078862000619565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620007ae82620003eb565b9150620007bb8362000796565b9250620007ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006ac565b905092915050565b5f620007fe82620003eb565b91506200080b83620003eb565b92508282026200081b81620003eb565b9150828204841483151762000835576200083462000619565b5b5092915050565b60805160a051613cae620008655f395f6108f601525f81816112c701526121a10152613cae5ff3fe608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063c87b56dd11610095578063e0df5b6f1161006f578063e0df5b6f146104cb578063e985e9c5146104e7578063f28ca1dd14610517578063f2fde38b14610535576101a7565b8063c87b56dd1461044d578063d547cfb71461047d578063dd62ed3e1461049b576101a7565b80639b19251a116100d15780639b19251a146103b5578063a22cb465146103e5578063a9059cbb14610401578063b88d4fde14610431576101a7565b806370a08231146103495780638da5cb5b1461037957806395d89b4114610397576101a7565b80632b968958116101645780634f02c4201161013e5780634f02c420146102c3578063504334c2146102e157806353d6fd59146102fd5780636352211e14610319576101a7565b80632b9689581461027f578063313ce5671461028957806342842e0e146102a7576101a7565b806306fdde03146101ab578063081812fc146101c9578063095ea7b3146101f957806318160ddd1461022957806318d217c31461024757806323b872dd14610263575b5f80fd5b6101b3610551565b6040516101c09190612ca5565b60405180910390f35b6101e360048036038101906101de9190612d09565b6105dd565b6040516101f09190612d73565b60405180910390f35b610213600480360381019061020e9190612db6565b61060d565b6040516102209190612e0e565b60405180910390f35b6102316108f4565b60405161023e9190612e36565b60405180910390f35b610261600480360381019061025c9190612f7b565b610918565b005b61027d60048036038101906102789190612fc2565b6109af565b005b6102876111a6565b005b6102916112c5565b60405161029e919061302d565b60405180910390f35b6102c160048036038101906102bc9190612fc2565b6112e9565b005b6102cb611418565b6040516102d89190612e36565b60405180910390f35b6102fb60048036038101906102f69190613046565b61141e565b005b610317600480360381019061031291906130e6565b6114b0565b005b610333600480360381019061032e9190612d09565b61158c565b6040516103409190612d73565b60405180910390f35b610363600480360381019061035e9190613124565b61162a565b6040516103709190612e36565b60405180910390f35b61038161163f565b60405161038e9190612d73565b60405180910390f35b61039f611662565b6040516103ac9190612ca5565b60405180910390f35b6103cf60048036038101906103ca9190613124565b6116ee565b6040516103dc9190612e0e565b60405180910390f35b6103ff60048036038101906103fa91906130e6565b61170b565b005b61041b60048036038101906104169190612db6565b611803565b6040516104289190612e0e565b60405180910390f35b61044b600480360381019061044691906131ac565b611817565b005b61046760048036038101906104629190612d09565b61194c565b6040516104749190612ca5565b60405180910390f35b610485611e20565b6040516104929190612ca5565b60405180910390f35b6104b560048036038101906104b09190613230565b611eac565b6040516104c29190612e36565b60405180910390f35b6104e560048036038101906104e09190612f7b565b611ecc565b005b61050160048036038101906104fc9190613230565b611f63565b60405161050e9190612e0e565b60405180910390f35b61051f611f8d565b60405161052c9190612ca5565b60405180910390f35b61054f600480360381019061054a9190613124565b612019565b005b6001805461055e9061329b565b80601f016020809104026020016040519081016040528092919081815260200182805461058a9061329b565b80156105d55780601f106105ac576101008083540402835291602001916105d5565b820191905f5260205f20905b8154815290600101906020018083116105b857829003601f168201915b505050505081565b6006602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600354821115801561061f57505f82115b15610807575f60085f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610716575060075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561074d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360065f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516107f99190612e36565b60405180910390a3506108ea565b8160055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108e19190612e36565b60405180910390a35b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c90816109ab9190613468565b5050565b60035481116110675760085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b70575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610bd8575060065f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c0f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1761219e565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c629190613564565b92505081905550610c7161219e565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610dc79190613564565b81548110610dd857610dd7613597565b5b905f5260205f20015490508060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600a5f8581526020019081526020015f205481548110610e4457610e43613597565b5b905f5260205f20018190555060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610e9d57610e9c6135c4565b5b600190038181905f5260205f20015f90559055600a5f8381526020019081526020015f2054600a5f8381526020019081526020015f208190555060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610f859190613564565b600a5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761104c61219e565b6040516110599190612e36565b60405180910390a3506111a1565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111935781816111169190613564565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61119e8484846121d1565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000000081565b6112f48383836109af565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113dc575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161137a93929190613624565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba91906136c1565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611413576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60035481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ac8282612515565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611534576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6004602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461166f9061329b565b80601f016020809104026020016040519081016040528092919081815260200182805461169b9061329b565b80156116e65780601f106116bd576101008083540402835291602001916116e6565b820191905f5260205f20905b8154815290600101906020018083116116c957829003601f168201915b505050505081565b600b602052805f5260405f205f915054906101000a900460ff1681565b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612e0e565b60405180910390a35050565b5f61180f3384846121d1565b905092915050565b6118228585856109af565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1415801561190e575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118ac959493929190613718565b6020604051808303815f875af11580156118c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ec91906136c1565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611945576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60605f600d805461195c9061329b565b9050111561199657600d61196f83612539565b60405160200161198092919061381e565b6040516020818303038152906040529050611e1b565b5f826040516020016119a89190613861565b6040516020818303038152906040528051906020012060f81c905060608060648360ff1611611a46576040518060400160405280600a81526020017f6d696e74792e6a7065670000000000000000000000000000000000000000000081525091506040518060400160405280601981526020017f4d696e747920274269672042616e6b2720427572726f776572000000000000008152509050611cc7565b608c8360ff1611611ac6576040518060400160405280600b81526020017f736b796c65722e6a70656700000000000000000000000000000000000000000081525091506040518060400160405280601c81526020017f536b796c6572202742757a7a776f72642720576869736b6572746f6e000000008152509050611cc6565b60b48360ff1611611b46576040518060400160405280600a81526020017f67697a6d6f2e6a7065670000000000000000000000000000000000000000000081525091506040518060400160405280601b81526020017f47697a6d6f20274d656761204279746527204675726e616e64657a00000000008152509050611cc5565b60dc8360ff1611611bc6576040518060400160405280600a81526020017f72757374792e6a7065670000000000000000000000000000000000000000000081525091506040518060400160405280601a81526020017f5275737479202754686520456e67696e65272044696777656c6c0000000000008152509050611cc4565b60f08360ff1611611c46576040518060400160405280600981526020017f63616d6f2e6a706567000000000000000000000000000000000000000000000081525091506040518060400160405280601881526020017f43616d6f20274c6f636b646f776e27204d6354756e6e656c00000000000000008152509050611cc3565b60ff8360ff1611611cc2576040518060400160405280600981526020017f6e656f6e2e6a706567000000000000000000000000000000000000000000000081525091506040518060400160405280601a81526020017f4e656f6e2027466c6173682044726976652720476c6f7770617700000000000081525090505b5b5b5b5b5b5f611cd186612539565b604051602001611ce191906138a1565b604051602081830303815290604052604051602001611d009190613982565b604051602081830303815290604052600c84604051602001611d2392919061381e565b604051602081830303815290604052604051602001611d439291906139a3565b60405160208183030381529060405290505f82604051602001611d669190613a36565b60405160208183030381529060405290505f6040518060400160405280600481526020017f227d5d7d0000000000000000000000000000000000000000000000000000000081525090508282604051602001611dc39291906139a3565b60405160208183030381529060405281604051602001611de49291906139a3565b604051602081830303815290604052604051602001611e039190613a7d565b60405160208183030381529060405296505050505050505b919050565b600d8054611e2d9061329b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e599061329b565b8015611ea45780601f10611e7b57610100808354040283529160200191611ea4565b820191905f5260205f20905b815481529060010190602001808311611e8757829003601f168201915b505050505081565b6005602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f50576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d9081611f5f9190613468565b5050565b6007602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c8054611f9a9061329b565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc69061329b565b80156120115780601f10611fe857610100808354040283529160200191612011565b820191905f5260205f20905b815481529060010190602001808311611ff457829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461209d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612102576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000000600a6121cc9190613bd1565b905090565b5f806121db61219e565b90505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546122ab9190613564565b925050819055508460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166123cf575f8360045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123949190613c48565b84846123a09190613c48565b6123aa9190613564565b90505f5b818110156123cc576123bf89612603565b80806001019150506123ae565b50505b600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166124a2575f838261242a9190613c48565b8460045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124739190613c48565b61247d9190613564565b90505f5b8181101561249f5761249288612848565b8080600101915050612481565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516124ff9190612e36565b60405180910390a3600193505050509392505050565b81600190816125249190613468565b5080600290816125349190613468565b505050565b60605f600161254784612aca565b0190505f8167ffffffffffffffff81111561256557612564612e57565b5b6040519080825280601f01601f1916602001820160405280156125975781602001600182028036833780820191505090505b5090505f82602001820190505b6001156125f8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816125ed576125ec613c1b565b5b0494505f85036125a4575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612668576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506126f39190613564565b8154811061270457612703613597565b5b905f5260205f200154905060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080548061275c5761275b6135c4565b5b600190038181905f5260205f20015f90559055600a5f8281526020019081526020015f205f905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036128ad576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035f81548092919060010191905055505f60035490505f73ffffffffffffffffffffffffffffffffffffffff1660085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612959576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050612a569190613564565b600a5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612b26577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612b1c57612b1b613c1b565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612b63576d04ee2d6d415b85acef81000000008381612b5957612b58613c1b565b5b0492506020810190505b662386f26fc100008310612b9257662386f26fc100008381612b8857612b87613c1b565b5b0492506010810190505b6305f5e1008310612bbb576305f5e1008381612bb157612bb0613c1b565b5b0492506008810190505b6127108310612be0576127108381612bd657612bd5613c1b565b5b0492506004810190505b60648310612c035760648381612bf957612bf8613c1b565b5b0492506002810190505b600a8310612c12576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612c52578082015181840152602081019050612c37565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612c7782612c1b565b612c818185612c25565b9350612c91818560208601612c35565b612c9a81612c5d565b840191505092915050565b5f6020820190508181035f830152612cbd8184612c6d565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612ce881612cd6565b8114612cf2575f80fd5b50565b5f81359050612d0381612cdf565b92915050565b5f60208284031215612d1e57612d1d612cce565b5b5f612d2b84828501612cf5565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d5d82612d34565b9050919050565b612d6d81612d53565b82525050565b5f602082019050612d865f830184612d64565b92915050565b612d9581612d53565b8114612d9f575f80fd5b50565b5f81359050612db081612d8c565b92915050565b5f8060408385031215612dcc57612dcb612cce565b5b5f612dd985828601612da2565b9250506020612dea85828601612cf5565b9150509250929050565b5f8115159050919050565b612e0881612df4565b82525050565b5f602082019050612e215f830184612dff565b92915050565b612e3081612cd6565b82525050565b5f602082019050612e495f830184612e27565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612e8d82612c5d565b810181811067ffffffffffffffff82111715612eac57612eab612e57565b5b80604052505050565b5f612ebe612cc5565b9050612eca8282612e84565b919050565b5f67ffffffffffffffff821115612ee957612ee8612e57565b5b612ef282612c5d565b9050602081019050919050565b828183375f83830152505050565b5f612f1f612f1a84612ecf565b612eb5565b905082815260208101848484011115612f3b57612f3a612e53565b5b612f46848285612eff565b509392505050565b5f82601f830112612f6257612f61612e4f565b5b8135612f72848260208601612f0d565b91505092915050565b5f60208284031215612f9057612f8f612cce565b5b5f82013567ffffffffffffffff811115612fad57612fac612cd2565b5b612fb984828501612f4e565b91505092915050565b5f805f60608486031215612fd957612fd8612cce565b5b5f612fe686828701612da2565b9350506020612ff786828701612da2565b925050604061300886828701612cf5565b9150509250925092565b5f60ff82169050919050565b61302781613012565b82525050565b5f6020820190506130405f83018461301e565b92915050565b5f806040838503121561305c5761305b612cce565b5b5f83013567ffffffffffffffff81111561307957613078612cd2565b5b61308585828601612f4e565b925050602083013567ffffffffffffffff8111156130a6576130a5612cd2565b5b6130b285828601612f4e565b9150509250929050565b6130c581612df4565b81146130cf575f80fd5b50565b5f813590506130e0816130bc565b92915050565b5f80604083850312156130fc576130fb612cce565b5b5f61310985828601612da2565b925050602061311a858286016130d2565b9150509250929050565b5f6020828403121561313957613138612cce565b5b5f61314684828501612da2565b91505092915050565b5f80fd5b5f80fd5b5f8083601f84011261316c5761316b612e4f565b5b8235905067ffffffffffffffff8111156131895761318861314f565b5b6020830191508360018202830111156131a5576131a4613153565b5b9250929050565b5f805f805f608086880312156131c5576131c4612cce565b5b5f6131d288828901612da2565b95505060206131e388828901612da2565b94505060406131f488828901612cf5565b935050606086013567ffffffffffffffff81111561321557613214612cd2565b5b61322188828901613157565b92509250509295509295909350565b5f806040838503121561324657613245612cce565b5b5f61325385828601612da2565b925050602061326485828601612da2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132b257607f821691505b6020821081036132c5576132c461326e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026133277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132ec565b61333186836132ec565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61336c61336761336284612cd6565b613349565b612cd6565b9050919050565b5f819050919050565b61338583613352565b61339961339182613373565b8484546132f8565b825550505050565b5f90565b6133ad6133a1565b6133b881848461337c565b505050565b5b818110156133db576133d05f826133a5565b6001810190506133be565b5050565b601f821115613420576133f1816132cb565b6133fa846132dd565b81016020851015613409578190505b61341d613415856132dd565b8301826133bd565b50505b505050565b5f82821c905092915050565b5f6134405f1984600802613425565b1980831691505092915050565b5f6134588383613431565b9150826002028217905092915050565b61347182612c1b565b67ffffffffffffffff81111561348a57613489612e57565b5b613494825461329b565b61349f8282856133df565b5f60209050601f8311600181146134d0575f84156134be578287015190505b6134c8858261344d565b86555061352f565b601f1984166134de866132cb565b5f5b82811015613505578489015182556001820191506020850194506020810190506134e0565b86831015613522578489015161351e601f891682613431565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61356e82612cd6565b915061357983612cd6565b925082820390508181111561359157613590613537565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f61360f5f836135f1565b915061361a82613601565b5f82019050919050565b5f6080820190506136375f830186612d64565b6136446020830185612d64565b6136516040830184612e27565b818103606083015261366281613604565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136a08161366c565b81146136aa575f80fd5b50565b5f815190506136bb81613697565b92915050565b5f602082840312156136d6576136d5612cce565b5b5f6136e3848285016136ad565b91505092915050565b5f6136f783856135f1565b9350613704838584612eff565b61370d83612c5d565b840190509392505050565b5f60808201905061372b5f830188612d64565b6137386020830187612d64565b6137456040830186612e27565b81810360608301526137588184866136ec565b90509695505050505050565b5f81905092915050565b5f815461377a8161329b565b6137848186613764565b9450600182165f811461379e57600181146137b3576137e5565b60ff19831686528115158202860193506137e5565b6137bc856132cb565b5f5b838110156137dd578154818901526001820191506020810190506137be565b838801955050505b50505092915050565b5f6137f882612c1b565b6138028185613764565b9350613812818560208601612c35565b80840191505092915050565b5f613829828561376e565b915061383582846137ee565b91508190509392505050565b5f819050919050565b61385b61385682612cd6565b613841565b82525050565b5f61386c828461384a565b60208201915081905092915050565b7f7b226e616d65223a2022474f4655525320230000000000000000000000000000815250565b5f6138ab8261387b565b6012820191506138bb82846137ee565b915081905092915050565b7f222c226465736372697074696f6e223a224120476f6f64204f6c6420466173685f8201527f696f6e656420556e20526567697374657265642053656375726974792c20656e60208201527f61626c6564206279204552433430342e222c2265787465726e616c5f75726c2260408201527f3a2268747470733a2f2f676f667572732e63617368222c22696d616765223a22606082015250565b5f61396c608083613764565b9150613977826138c6565b608082019050919050565b5f61398d82846137ee565b915061399882613960565b915081905092915050565b5f6139ae82856137ee565b91506139ba82846137ee565b91508190509392505050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a224e5f8201527f616d65222c2276616c7565223a22000000000000000000000000000000000000602082015250565b5f613a20602e83613764565b9150613a2b826139c6565b602e82019050919050565b5f613a4082613a14565b9150613a4c82846137ee565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613a8782613a57565b601b82019150613a9782846137ee565b915081905092915050565b5f8160011c9050919050565b5f808291508390505b6001851115613af757808604811115613ad357613ad2613537565b5b6001851615613ae25780820291505b8081029050613af085613aa2565b9450613ab7565b94509492505050565b5f82613b0f5760019050613bca565b81613b1c575f9050613bca565b8160018114613b325760028114613b3c57613b6b565b6001915050613bca565b60ff841115613b4e57613b4d613537565b5b8360020a915084821115613b6557613b64613537565b5b50613bca565b5060208310610133831016604e8410600b8410161715613ba05782820a905083811115613b9b57613b9a613537565b5b613bca565b613bad8484846001613aae565b92509050818404811115613bc457613bc3613537565b5b81810290505b9392505050565b5f613bdb82612cd6565b9150613be683613012565b9250613c137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613b00565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613c5282612cd6565b9150613c5d83612cd6565b925082613c6d57613c6c613c1b565b5b82820490509291505056fea26469706673582212202fc7627bb3209b674d219c8434bd71f2f47a5a78ffeed0415ee14456a4d3d06464736f6c63430008180033476f6f64204f6c642046617368696f6e656420556e2052656769737465726564205365637572697479000000000000000000000000fdf2e77f113a87d419b25659e8787ab019e5e0da

Deployed ByteCode

0x608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063c87b56dd11610095578063e0df5b6f1161006f578063e0df5b6f146104cb578063e985e9c5146104e7578063f28ca1dd14610517578063f2fde38b14610535576101a7565b8063c87b56dd1461044d578063d547cfb71461047d578063dd62ed3e1461049b576101a7565b80639b19251a116100d15780639b19251a146103b5578063a22cb465146103e5578063a9059cbb14610401578063b88d4fde14610431576101a7565b806370a08231146103495780638da5cb5b1461037957806395d89b4114610397576101a7565b80632b968958116101645780634f02c4201161013e5780634f02c420146102c3578063504334c2146102e157806353d6fd59146102fd5780636352211e14610319576101a7565b80632b9689581461027f578063313ce5671461028957806342842e0e146102a7576101a7565b806306fdde03146101ab578063081812fc146101c9578063095ea7b3146101f957806318160ddd1461022957806318d217c31461024757806323b872dd14610263575b5f80fd5b6101b3610551565b6040516101c09190612ca5565b60405180910390f35b6101e360048036038101906101de9190612d09565b6105dd565b6040516101f09190612d73565b60405180910390f35b610213600480360381019061020e9190612db6565b61060d565b6040516102209190612e0e565b60405180910390f35b6102316108f4565b60405161023e9190612e36565b60405180910390f35b610261600480360381019061025c9190612f7b565b610918565b005b61027d60048036038101906102789190612fc2565b6109af565b005b6102876111a6565b005b6102916112c5565b60405161029e919061302d565b60405180910390f35b6102c160048036038101906102bc9190612fc2565b6112e9565b005b6102cb611418565b6040516102d89190612e36565b60405180910390f35b6102fb60048036038101906102f69190613046565b61141e565b005b610317600480360381019061031291906130e6565b6114b0565b005b610333600480360381019061032e9190612d09565b61158c565b6040516103409190612d73565b60405180910390f35b610363600480360381019061035e9190613124565b61162a565b6040516103709190612e36565b60405180910390f35b61038161163f565b60405161038e9190612d73565b60405180910390f35b61039f611662565b6040516103ac9190612ca5565b60405180910390f35b6103cf60048036038101906103ca9190613124565b6116ee565b6040516103dc9190612e0e565b60405180910390f35b6103ff60048036038101906103fa91906130e6565b61170b565b005b61041b60048036038101906104169190612db6565b611803565b6040516104289190612e0e565b60405180910390f35b61044b600480360381019061044691906131ac565b611817565b005b61046760048036038101906104629190612d09565b61194c565b6040516104749190612ca5565b60405180910390f35b610485611e20565b6040516104929190612ca5565b60405180910390f35b6104b560048036038101906104b09190613230565b611eac565b6040516104c29190612e36565b60405180910390f35b6104e560048036038101906104e09190612f7b565b611ecc565b005b61050160048036038101906104fc9190613230565b611f63565b60405161050e9190612e0e565b60405180910390f35b61051f611f8d565b60405161052c9190612ca5565b60405180910390f35b61054f600480360381019061054a9190613124565b612019565b005b6001805461055e9061329b565b80601f016020809104026020016040519081016040528092919081815260200182805461058a9061329b565b80156105d55780601f106105ac576101008083540402835291602001916105d5565b820191905f5260205f20905b8154815290600101906020018083116105b857829003601f168201915b505050505081565b6006602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600354821115801561061f57505f82115b15610807575f60085f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610716575060075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561074d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360065f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516107f99190612e36565b60405180910390a3506108ea565b8160055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108e19190612e36565b60405180910390a35b6001905092915050565b7f00000000000000000000000000000000000000000000021e19e0c9bab240000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c90816109ab9190613468565b5050565b60035481116110675760085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b70575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610bd8575060065f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c0f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1761219e565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c629190613564565b92505081905550610c7161219e565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610dc79190613564565b81548110610dd857610dd7613597565b5b905f5260205f20015490508060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600a5f8581526020019081526020015f205481548110610e4457610e43613597565b5b905f5260205f20018190555060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610e9d57610e9c6135c4565b5b600190038181905f5260205f20015f90559055600a5f8381526020019081526020015f2054600a5f8381526020019081526020015f208190555060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610f859190613564565b600a5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761104c61219e565b6040516110599190612e36565b60405180910390a3506111a1565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111935781816111169190613564565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61119e8484846121d1565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000001281565b6112f48383836109af565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113dc575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161137a93929190613624565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba91906136c1565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611413576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60035481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ac8282612515565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611534576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6004602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461166f9061329b565b80601f016020809104026020016040519081016040528092919081815260200182805461169b9061329b565b80156116e65780601f106116bd576101008083540402835291602001916116e6565b820191905f5260205f20905b8154815290600101906020018083116116c957829003601f168201915b505050505081565b600b602052805f5260405f205f915054906101000a900460ff1681565b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612e0e565b60405180910390a35050565b5f61180f3384846121d1565b905092915050565b6118228585856109af565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1415801561190e575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118ac959493929190613718565b6020604051808303815f875af11580156118c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ec91906136c1565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611945576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60605f600d805461195c9061329b565b9050111561199657600d61196f83612539565b60405160200161198092919061381e565b6040516020818303038152906040529050611e1b565b5f826040516020016119a89190613861565b6040516020818303038152906040528051906020012060f81c905060608060648360ff1611611a46576040518060400160405280600a81526020017f6d696e74792e6a7065670000000000000000000000000000000000000000000081525091506040518060400160405280601981526020017f4d696e747920274269672042616e6b2720427572726f776572000000000000008152509050611cc7565b608c8360ff1611611ac6576040518060400160405280600b81526020017f736b796c65722e6a70656700000000000000000000000000000000000000000081525091506040518060400160405280601c81526020017f536b796c6572202742757a7a776f72642720576869736b6572746f6e000000008152509050611cc6565b60b48360ff1611611b46576040518060400160405280600a81526020017f67697a6d6f2e6a7065670000000000000000000000000000000000000000000081525091506040518060400160405280601b81526020017f47697a6d6f20274d656761204279746527204675726e616e64657a00000000008152509050611cc5565b60dc8360ff1611611bc6576040518060400160405280600a81526020017f72757374792e6a7065670000000000000000000000000000000000000000000081525091506040518060400160405280601a81526020017f5275737479202754686520456e67696e65272044696777656c6c0000000000008152509050611cc4565b60f08360ff1611611c46576040518060400160405280600981526020017f63616d6f2e6a706567000000000000000000000000000000000000000000000081525091506040518060400160405280601881526020017f43616d6f20274c6f636b646f776e27204d6354756e6e656c00000000000000008152509050611cc3565b60ff8360ff1611611cc2576040518060400160405280600981526020017f6e656f6e2e6a706567000000000000000000000000000000000000000000000081525091506040518060400160405280601a81526020017f4e656f6e2027466c6173682044726976652720476c6f7770617700000000000081525090505b5b5b5b5b5b5f611cd186612539565b604051602001611ce191906138a1565b604051602081830303815290604052604051602001611d009190613982565b604051602081830303815290604052600c84604051602001611d2392919061381e565b604051602081830303815290604052604051602001611d439291906139a3565b60405160208183030381529060405290505f82604051602001611d669190613a36565b60405160208183030381529060405290505f6040518060400160405280600481526020017f227d5d7d0000000000000000000000000000000000000000000000000000000081525090508282604051602001611dc39291906139a3565b60405160208183030381529060405281604051602001611de49291906139a3565b604051602081830303815290604052604051602001611e039190613a7d565b60405160208183030381529060405296505050505050505b919050565b600d8054611e2d9061329b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e599061329b565b8015611ea45780601f10611e7b57610100808354040283529160200191611ea4565b820191905f5260205f20905b815481529060010190602001808311611e8757829003601f168201915b505050505081565b6005602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f50576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d9081611f5f9190613468565b5050565b6007602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c8054611f9a9061329b565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc69061329b565b80156120115780601f10611fe857610100808354040283529160200191612011565b820191905f5260205f20905b815481529060010190602001808311611ff457829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461209d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612102576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000012600a6121cc9190613bd1565b905090565b5f806121db61219e565b90505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546122ab9190613564565b925050819055508460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166123cf575f8360045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123949190613c48565b84846123a09190613c48565b6123aa9190613564565b90505f5b818110156123cc576123bf89612603565b80806001019150506123ae565b50505b600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166124a2575f838261242a9190613c48565b8460045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124739190613c48565b61247d9190613564565b90505f5b8181101561249f5761249288612848565b8080600101915050612481565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516124ff9190612e36565b60405180910390a3600193505050509392505050565b81600190816125249190613468565b5080600290816125349190613468565b505050565b60605f600161254784612aca565b0190505f8167ffffffffffffffff81111561256557612564612e57565b5b6040519080825280601f01601f1916602001820160405280156125975781602001600182028036833780820191505090505b5090505f82602001820190505b6001156125f8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816125ed576125ec613c1b565b5b0494505f85036125a4575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612668576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506126f39190613564565b8154811061270457612703613597565b5b905f5260205f200154905060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080548061275c5761275b6135c4565b5b600190038181905f5260205f20015f90559055600a5f8281526020019081526020015f205f905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036128ad576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035f81548092919060010191905055505f60035490505f73ffffffffffffffffffffffffffffffffffffffff1660085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612959576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050612a569190613564565b600a5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612b26577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612b1c57612b1b613c1b565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612b63576d04ee2d6d415b85acef81000000008381612b5957612b58613c1b565b5b0492506020810190505b662386f26fc100008310612b9257662386f26fc100008381612b8857612b87613c1b565b5b0492506010810190505b6305f5e1008310612bbb576305f5e1008381612bb157612bb0613c1b565b5b0492506008810190505b6127108310612be0576127108381612bd657612bd5613c1b565b5b0492506004810190505b60648310612c035760648381612bf957612bf8613c1b565b5b0492506002810190505b600a8310612c12576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612c52578082015181840152602081019050612c37565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612c7782612c1b565b612c818185612c25565b9350612c91818560208601612c35565b612c9a81612c5d565b840191505092915050565b5f6020820190508181035f830152612cbd8184612c6d565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612ce881612cd6565b8114612cf2575f80fd5b50565b5f81359050612d0381612cdf565b92915050565b5f60208284031215612d1e57612d1d612cce565b5b5f612d2b84828501612cf5565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d5d82612d34565b9050919050565b612d6d81612d53565b82525050565b5f602082019050612d865f830184612d64565b92915050565b612d9581612d53565b8114612d9f575f80fd5b50565b5f81359050612db081612d8c565b92915050565b5f8060408385031215612dcc57612dcb612cce565b5b5f612dd985828601612da2565b9250506020612dea85828601612cf5565b9150509250929050565b5f8115159050919050565b612e0881612df4565b82525050565b5f602082019050612e215f830184612dff565b92915050565b612e3081612cd6565b82525050565b5f602082019050612e495f830184612e27565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612e8d82612c5d565b810181811067ffffffffffffffff82111715612eac57612eab612e57565b5b80604052505050565b5f612ebe612cc5565b9050612eca8282612e84565b919050565b5f67ffffffffffffffff821115612ee957612ee8612e57565b5b612ef282612c5d565b9050602081019050919050565b828183375f83830152505050565b5f612f1f612f1a84612ecf565b612eb5565b905082815260208101848484011115612f3b57612f3a612e53565b5b612f46848285612eff565b509392505050565b5f82601f830112612f6257612f61612e4f565b5b8135612f72848260208601612f0d565b91505092915050565b5f60208284031215612f9057612f8f612cce565b5b5f82013567ffffffffffffffff811115612fad57612fac612cd2565b5b612fb984828501612f4e565b91505092915050565b5f805f60608486031215612fd957612fd8612cce565b5b5f612fe686828701612da2565b9350506020612ff786828701612da2565b925050604061300886828701612cf5565b9150509250925092565b5f60ff82169050919050565b61302781613012565b82525050565b5f6020820190506130405f83018461301e565b92915050565b5f806040838503121561305c5761305b612cce565b5b5f83013567ffffffffffffffff81111561307957613078612cd2565b5b61308585828601612f4e565b925050602083013567ffffffffffffffff8111156130a6576130a5612cd2565b5b6130b285828601612f4e565b9150509250929050565b6130c581612df4565b81146130cf575f80fd5b50565b5f813590506130e0816130bc565b92915050565b5f80604083850312156130fc576130fb612cce565b5b5f61310985828601612da2565b925050602061311a858286016130d2565b9150509250929050565b5f6020828403121561313957613138612cce565b5b5f61314684828501612da2565b91505092915050565b5f80fd5b5f80fd5b5f8083601f84011261316c5761316b612e4f565b5b8235905067ffffffffffffffff8111156131895761318861314f565b5b6020830191508360018202830111156131a5576131a4613153565b5b9250929050565b5f805f805f608086880312156131c5576131c4612cce565b5b5f6131d288828901612da2565b95505060206131e388828901612da2565b94505060406131f488828901612cf5565b935050606086013567ffffffffffffffff81111561321557613214612cd2565b5b61322188828901613157565b92509250509295509295909350565b5f806040838503121561324657613245612cce565b5b5f61325385828601612da2565b925050602061326485828601612da2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132b257607f821691505b6020821081036132c5576132c461326e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026133277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132ec565b61333186836132ec565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61336c61336761336284612cd6565b613349565b612cd6565b9050919050565b5f819050919050565b61338583613352565b61339961339182613373565b8484546132f8565b825550505050565b5f90565b6133ad6133a1565b6133b881848461337c565b505050565b5b818110156133db576133d05f826133a5565b6001810190506133be565b5050565b601f821115613420576133f1816132cb565b6133fa846132dd565b81016020851015613409578190505b61341d613415856132dd565b8301826133bd565b50505b505050565b5f82821c905092915050565b5f6134405f1984600802613425565b1980831691505092915050565b5f6134588383613431565b9150826002028217905092915050565b61347182612c1b565b67ffffffffffffffff81111561348a57613489612e57565b5b613494825461329b565b61349f8282856133df565b5f60209050601f8311600181146134d0575f84156134be578287015190505b6134c8858261344d565b86555061352f565b601f1984166134de866132cb565b5f5b82811015613505578489015182556001820191506020850194506020810190506134e0565b86831015613522578489015161351e601f891682613431565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61356e82612cd6565b915061357983612cd6565b925082820390508181111561359157613590613537565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f61360f5f836135f1565b915061361a82613601565b5f82019050919050565b5f6080820190506136375f830186612d64565b6136446020830185612d64565b6136516040830184612e27565b818103606083015261366281613604565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136a08161366c565b81146136aa575f80fd5b50565b5f815190506136bb81613697565b92915050565b5f602082840312156136d6576136d5612cce565b5b5f6136e3848285016136ad565b91505092915050565b5f6136f783856135f1565b9350613704838584612eff565b61370d83612c5d565b840190509392505050565b5f60808201905061372b5f830188612d64565b6137386020830187612d64565b6137456040830186612e27565b81810360608301526137588184866136ec565b90509695505050505050565b5f81905092915050565b5f815461377a8161329b565b6137848186613764565b9450600182165f811461379e57600181146137b3576137e5565b60ff19831686528115158202860193506137e5565b6137bc856132cb565b5f5b838110156137dd578154818901526001820191506020810190506137be565b838801955050505b50505092915050565b5f6137f882612c1b565b6138028185613764565b9350613812818560208601612c35565b80840191505092915050565b5f613829828561376e565b915061383582846137ee565b91508190509392505050565b5f819050919050565b61385b61385682612cd6565b613841565b82525050565b5f61386c828461384a565b60208201915081905092915050565b7f7b226e616d65223a2022474f4655525320230000000000000000000000000000815250565b5f6138ab8261387b565b6012820191506138bb82846137ee565b915081905092915050565b7f222c226465736372697074696f6e223a224120476f6f64204f6c6420466173685f8201527f696f6e656420556e20526567697374657265642053656375726974792c20656e60208201527f61626c6564206279204552433430342e222c2265787465726e616c5f75726c2260408201527f3a2268747470733a2f2f676f667572732e63617368222c22696d616765223a22606082015250565b5f61396c608083613764565b9150613977826138c6565b608082019050919050565b5f61398d82846137ee565b915061399882613960565b915081905092915050565b5f6139ae82856137ee565b91506139ba82846137ee565b91508190509392505050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a224e5f8201527f616d65222c2276616c7565223a22000000000000000000000000000000000000602082015250565b5f613a20602e83613764565b9150613a2b826139c6565b602e82019050919050565b5f613a4082613a14565b9150613a4c82846137ee565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613a8782613a57565b601b82019150613a9782846137ee565b915081905092915050565b5f8160011c9050919050565b5f808291508390505b6001851115613af757808604811115613ad357613ad2613537565b5b6001851615613ae25780820291505b8081029050613af085613aa2565b9450613ab7565b94509492505050565b5f82613b0f5760019050613bca565b81613b1c575f9050613bca565b8160018114613b325760028114613b3c57613b6b565b6001915050613bca565b60ff841115613b4e57613b4d613537565b5b8360020a915084821115613b6557613b64613537565b5b50613bca565b5060208310610133831016604e8410600b8410161715613ba05782820a905083811115613b9b57613b9a613537565b5b613bca565b613bad8484846001613aae565b92509050818404811115613bc457613bc3613537565b5b81810290505b9392505050565b5f613bdb82612cd6565b9150613be683613012565b9250613c137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613b00565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613c5282612cd6565b9150613c5d83612cd6565b925082613c6d57613c6c613c1b565b5b82820490509291505056fea26469706673582212202fc7627bb3209b674d219c8434bd71f2f47a5a78ffeed0415ee14456a4d3d06464736f6c63430008180033