false
true
0

Contract Address Details

0xE8C9A78725D0451FA19878D5f8A3dC0D55FECF25

Contract Name
CrowdPoolingFactory
Creator
0x16cc37–396a2b at 0x93b4ec–0f95f7
Balance
0 PLS ( )
Tokens
Fetching tokens...
Transactions
Fetching transactions...
Transfers
Fetching transfers...
Gas Used
Fetching gas used...
Last Balance Update
26318707
Warning! Contract bytecode has been changed and doesn't match the verified one. Therefore, interaction with this smart contract may be risky.
This contract has been partially verified via Sourcify. View contract in Sourcify repository
Contract name:
CrowdPoolingFactory




Optimization enabled
true
Compiler version
v0.6.9+commit.3e3065ac




Optimization runs
200
EVM Version
istanbul




Verified at
2026-04-18T21:34:09.047855Z

Constructor Arguments

0000000000000000000000005e5a7b76462e4bdf83aa98795644281bdba80b8800000000000000000000000018b0bd918b55f995fd404b872404378a62cb403b00000000000000000000000072d220ce168c4f361dd4dee5d826a01ad8598f6c00000000000000000000000095c4f5b83aa70810d4f142d58e5f7242bd891cb00000000000000000000000005e84190a270333ace5b9202a3f4cebf11b81bb010000000000000000000000006b208e08dcf6bd51f50c5da09d15b2d8e5c46cf2

Arg [0] (address) : 0x5e5a7b76462e4bdf83aa98795644281bdba80b88
Arg [1] (address) : 0x18b0bd918b55f995fd404b872404378a62cb403b
Arg [2] (address) : 0x72d220ce168c4f361dd4dee5d826a01ad8598f6c
Arg [3] (address) : 0x95c4f5b83aa70810d4f142d58e5f7242bd891cb0
Arg [4] (address) : 0x5e84190a270333ace5b9202a3f4cebf11b81bb01
Arg [5] (address) : 0x6b208e08dcf6bd51f50c5da09d15b2d8e5c46cf2

              

CrowdPoolingFactory.sol

// File: contracts/lib/InitializableOwnable.sol

/*

    Copyright 2020 DODO ZOO.
    SPDX-License-Identifier: Apache-2.0

*/

pragma solidity 0.6.9;
pragma experimental ABIEncoderV2;

/**
 * @title Ownable
 * @author DODO Breeder
 *
 * @notice Ownership related functions
 */
contract InitializableOwnable {
    address public _OWNER_;
    address public _NEW_OWNER_;
    bool internal _INITIALIZED_;

    // ============ Events ============

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

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

    // ============ Modifiers ============

    modifier notInitialized() {
        require(!_INITIALIZED_, "DODO_INITIALIZED");
        _;
    }

    modifier onlyOwner() {
        require(msg.sender == _OWNER_, "NOT_OWNER");
        _;
    }

    // ============ Functions ============

    function initOwner(address newOwner) public notInitialized {
        _INITIALIZED_ = true;
        _OWNER_ = newOwner;
    }

    function transferOwnership(address newOwner) public onlyOwner {
        emit OwnershipTransferPrepared(_OWNER_, newOwner);
        _NEW_OWNER_ = newOwner;
    }

    function claimOwnership() public {
        require(msg.sender == _NEW_OWNER_, "INVALID_CLAIM");
        emit OwnershipTransferred(_OWNER_, _NEW_OWNER_);
        _OWNER_ = _NEW_OWNER_;
        _NEW_OWNER_ = address(0);
    }
}

// File: contracts/lib/CloneFactory.sol


interface ICloneFactory {
    function clone(address prototype) external returns (address proxy);
}

// introduction of proxy mode design: https://docs.openzeppelin.com/upgrades/2.8/
// minimum implementation of transparent proxy: https://eips.ethereum.org/EIPS/eip-1167

contract CloneFactory is ICloneFactory {
    function clone(address prototype) external override returns (address proxy) {
        bytes20 targetBytes = bytes20(prototype);
        assembly {
            let clone := mload(0x40)
            mstore(clone, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000)
            mstore(add(clone, 0x14), targetBytes)
            mstore(
                add(clone, 0x28),
                0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000
            )
            proxy := create(0, clone, 0x37)
        }
        return proxy;
    }
}

// File: contracts/CrowdPooling/intf/ICP.sol

interface ICP {
    function init(
        address[] calldata addressList,
        uint256[] calldata timeLine,
        uint256[] calldata valueList,
        bool isOpenTWAP
    ) external;

    function bid(address to) external;

    function cancel(address assetTo, uint256 amount) external;

    function settle() external;

    function emergencySettle() external;

    function claimBase() external;

    function claimQuote() external;

    function claimLPToken() external;
}

// File: contracts/lib/SafeMath.sol


/**
 * @title SafeMath
 * @author DODO Breeder
 *
 * @notice Math operations with safety checks that revert on error
 */
library SafeMath {
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "MUL_ERROR");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "DIVIDING_ERROR");
        return a / b;
    }

    function divCeil(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 quotient = div(a, b);
        uint256 remainder = a - quotient * b;
        if (remainder > 0) {
            return quotient + 1;
        } else {
            return quotient;
        }
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SUB_ERROR");
        return a - b;
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "ADD_ERROR");
        return c;
    }

    function sqrt(uint256 x) internal pure returns (uint256 y) {
        uint256 z = x / 2 + 1;
        y = x;
        while (z < y) {
            y = z;
            z = (x / z + z) / 2;
        }
    }
}

// File: contracts/intf/IERC20.sol


/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    function decimals() external view returns (uint8);

    function name() external view returns (string memory);

    function symbol() external view returns (string memory);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);
}

// File: contracts/lib/DecimalMath.sol



/**
 * @title DecimalMath
 * @author DODO Breeder
 *
 * @notice Functions for fixed point number with 18 decimals
 */
library DecimalMath {
    using SafeMath for uint256;

    uint256 internal constant ONE = 10**18;
    uint256 internal constant ONE2 = 10**36;

    function mulFloor(uint256 target, uint256 d) internal pure returns (uint256) {
        return target.mul(d) / (10**18);
    }

    function mulCeil(uint256 target, uint256 d) internal pure returns (uint256) {
        return target.mul(d).divCeil(10**18);
    }

    function divFloor(uint256 target, uint256 d) internal pure returns (uint256) {
        return target.mul(10**18).div(d);
    }

    function divCeil(uint256 target, uint256 d) internal pure returns (uint256) {
        return target.mul(10**18).divCeil(d);
    }

    function reciprocalFloor(uint256 target) internal pure returns (uint256) {
        return uint256(10**36).div(target);
    }

    function reciprocalCeil(uint256 target) internal pure returns (uint256) {
        return uint256(10**36).divCeil(target);
    }
}

// File: contracts/Factory/CrowdPoolingFactory.sol




/**
 * @title CrowdPoolingFacotry
 * @author DODO Breeder
 *
 * @notice Create And Register CP Pools 
 */
contract CrowdPoolingFactory is InitializableOwnable {
    using SafeMath for uint256;
    // ============ Templates ============

    address public immutable _CLONE_FACTORY_;
    address public immutable _DVM_FACTORY_;
    address public immutable _DEFAULT_MAINTAINER_;
    address public immutable _DEFAULT_MT_FEE_RATE_MODEL_;
    address public immutable _DEFAULT_PERMISSION_MANAGER_;
    address public _CP_TEMPLATE_;

    // ============ Settings =============

    uint256 public _CAP_RATIO_ = 50; 
    uint256 public _FREEZE_DURATION_ =  30 days;
    uint256 public _CALM_DURATION_ = 0;
    uint256 public _VEST_DURATION_ = 0;
    uint256 public _K_ = 0;
    uint256 public _CLIFF_RATE_ = 10**18;


    // ============ Registry ============

    // base -> quote -> CP address list
    mapping(address => mapping(address => address[])) public _REGISTRY_;
    // creator -> CP address list
    mapping(address => address[]) public _USER_REGISTRY_;

    // ============ modifiers ===========

    modifier valueCheck(
        address cpAddress,
        address baseToken,
        uint256[] memory timeLine,
        uint256[] memory valueList)
    {
        require(timeLine[2] == _CALM_DURATION_, "CP_FACTORY : PHASE_CALM_DURATION_INVALID");
        require(timeLine[4] == _VEST_DURATION_, "CP_FACTORY : VEST_DURATION_INVALID");
        require(valueList[1] == _K_, "CP_FACTORY : K_INVALID");
        require(valueList[3] == _CLIFF_RATE_, "CP_FACTORY : CLIFF_RATE_INVALID");

        uint256 baseTokenBalance = IERC20(baseToken).balanceOf(cpAddress);
        require(valueList[0].mul(100) <= baseTokenBalance.mul(valueList[2]).div(10**18).mul(_CAP_RATIO_),"CP_FACTORY : QUOTE_CAP_INVALID");
        require(timeLine[3]>= _FREEZE_DURATION_, "CP_FACTORY : FREEZE_DURATION_INVALID");
        _;
    }

    // ============ Events ============

    event NewCP(
        address baseToken,
        address quoteToken,
        address creator,
        address cp
    );

    constructor(
        address cloneFactory,
        address cpTemplate,
        address dvmFactory,
        address defaultMaintainer,
        address defaultMtFeeRateModel,
        address defaultPermissionManager
    ) public {
        _CLONE_FACTORY_ = cloneFactory;
        _CP_TEMPLATE_ = cpTemplate;
        _DVM_FACTORY_ = dvmFactory;
        _DEFAULT_MAINTAINER_ = defaultMaintainer;
        _DEFAULT_MT_FEE_RATE_MODEL_ = defaultMtFeeRateModel;
        _DEFAULT_PERMISSION_MANAGER_ = defaultPermissionManager;
    }

    // ============ Functions ============

    function createCrowdPooling() external returns (address newCrowdPooling) {
        newCrowdPooling = ICloneFactory(_CLONE_FACTORY_).clone(_CP_TEMPLATE_);
    }

    function initCrowdPooling(
        address cpAddress,
        address creator,
        address baseToken,
        address quoteToken,
        uint256[] memory timeLine,
        uint256[] memory valueList,
        bool isOpenTWAP
    ) external valueCheck(cpAddress,baseToken,timeLine,valueList) {
        {
        address[] memory addressList = new address[](7);
        addressList[0] = creator;
        addressList[1] = _DEFAULT_MAINTAINER_;
        addressList[2] = baseToken;
        addressList[3] = quoteToken;
        addressList[4] = _DEFAULT_PERMISSION_MANAGER_;
        addressList[5] = _DEFAULT_MT_FEE_RATE_MODEL_;
        addressList[6] = _DVM_FACTORY_;

        ICP(cpAddress).init(
            addressList,
            timeLine,
            valueList,
            isOpenTWAP
        );
        }

        _REGISTRY_[baseToken][quoteToken].push(cpAddress);
        _USER_REGISTRY_[creator].push(cpAddress);

        emit NewCP(baseToken, quoteToken, creator, cpAddress);
    }

    // ============ View Functions ============

    function getCrowdPooling(address baseToken, address quoteToken)
        external
        view
        returns (address[] memory pools)
    {
        return _REGISTRY_[baseToken][quoteToken];
    }

    function getCrowdPoolingBidirection(address token0, address token1)
        external
        view
        returns (address[] memory baseToken0Pools, address[] memory baseToken1Pools)
    {
        return (_REGISTRY_[token0][token1], _REGISTRY_[token1][token0]);
    }

    function getCrowdPoolingByUser(address user)
        external
        view
        returns (address[] memory pools)
    {
        return _USER_REGISTRY_[user];
    }

    // ============ Owner Functions ============
    
    function updateCPTemplate(address _newCPTemplate) external onlyOwner {
        _CP_TEMPLATE_ = _newCPTemplate;
    }

    function setCapRatio(uint256 _newCapRatio) public onlyOwner {
        require(_newCapRatio > 0 && _newCapRatio <= 100, "CP_FACTORY : INVALID");
        _CAP_RATIO_ = _newCapRatio;
    }

    function setFreezeDuration(uint256 _newFreeDuration) public onlyOwner {
        _FREEZE_DURATION_ = _newFreeDuration;
    }

    function setCalmDuration(uint256 _newCalmDuration) public onlyOwner {
        _CALM_DURATION_ = _newCalmDuration;
    }

    function setVestDuration(uint256 _newVestDuration) public onlyOwner {
        _VEST_DURATION_ = _newVestDuration;
    }

    function setK(uint256 _newK) public onlyOwner {
        require(_newK <= 10**18, "CP_FACTORY : INVALID");
        _K_ = _newK;
    }

    function setCliffRate(uint256 _newCliffRate) public onlyOwner {
        require(_newCliffRate <= 10**18, "CP_FACTORY : INVALID");
        _CLIFF_RATE_ = _newCliffRate;
    }
}
        

Compiler Settings

{"remappings":[],"optimizer":{"runs":200,"enabled":true},"metadata":{"bytecodeHash":"ipfs"},"libraries":{},"evmVersion":"istanbul","compilationTarget":{"CrowdPoolingFactory.sol":"CrowdPoolingFactory"}}
              

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"cloneFactory","internalType":"address"},{"type":"address","name":"cpTemplate","internalType":"address"},{"type":"address","name":"dvmFactory","internalType":"address"},{"type":"address","name":"defaultMaintainer","internalType":"address"},{"type":"address","name":"defaultMtFeeRateModel","internalType":"address"},{"type":"address","name":"defaultPermissionManager","internalType":"address"}]},{"type":"event","name":"NewCP","inputs":[{"type":"address","name":"baseToken","internalType":"address","indexed":false},{"type":"address","name":"quoteToken","internalType":"address","indexed":false},{"type":"address","name":"creator","internalType":"address","indexed":false},{"type":"address","name":"cp","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferPrepared","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_CALM_DURATION_","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_CAP_RATIO_","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_CLIFF_RATE_","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_CLONE_FACTORY_","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_CP_TEMPLATE_","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_DEFAULT_MAINTAINER_","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_DEFAULT_MT_FEE_RATE_MODEL_","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_DEFAULT_PERMISSION_MANAGER_","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_DVM_FACTORY_","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_FREEZE_DURATION_","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_K_","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_NEW_OWNER_","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_OWNER_","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_REGISTRY_","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"_USER_REGISTRY_","inputs":[{"type":"address","name":"","internalType":"address"},{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"_VEST_DURATION_","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"claimOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"address","name":"newCrowdPooling","internalType":"address"}],"name":"createCrowdPooling","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address[]","name":"pools","internalType":"address[]"}],"name":"getCrowdPooling","inputs":[{"type":"address","name":"baseToken","internalType":"address"},{"type":"address","name":"quoteToken","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address[]","name":"baseToken0Pools","internalType":"address[]"},{"type":"address[]","name":"baseToken1Pools","internalType":"address[]"}],"name":"getCrowdPoolingBidirection","inputs":[{"type":"address","name":"token0","internalType":"address"},{"type":"address","name":"token1","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address[]","name":"pools","internalType":"address[]"}],"name":"getCrowdPoolingByUser","inputs":[{"type":"address","name":"user","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initCrowdPooling","inputs":[{"type":"address","name":"cpAddress","internalType":"address"},{"type":"address","name":"creator","internalType":"address"},{"type":"address","name":"baseToken","internalType":"address"},{"type":"address","name":"quoteToken","internalType":"address"},{"type":"uint256[]","name":"timeLine","internalType":"uint256[]"},{"type":"uint256[]","name":"valueList","internalType":"uint256[]"},{"type":"bool","name":"isOpenTWAP","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"initOwner","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setCalmDuration","inputs":[{"type":"uint256","name":"_newCalmDuration","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setCapRatio","inputs":[{"type":"uint256","name":"_newCapRatio","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setCliffRate","inputs":[{"type":"uint256","name":"_newCliffRate","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setFreezeDuration","inputs":[{"type":"uint256","name":"_newFreeDuration","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setK","inputs":[{"type":"uint256","name":"_newK","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setVestDuration","inputs":[{"type":"uint256","name":"_newVestDuration","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateCPTemplate","inputs":[{"type":"address","name":"_newCPTemplate","internalType":"address"}]}]
              

Contract Creation Code

Verify & Publish
0x610120604052603260035562278d00600455600060055560006006556000600755670de0b6b3a76400006008553480156200003957600080fd5b5060405162001969380380620019698339810160408190526200005c91620000d4565b606095861b6001600160601b0319908116608052600280546001600160a01b0319166001600160a01b03979097169690961790955592851b841660a05290841b831660c052831b821660e05290911b16610100526200015a565b80516001600160a01b0381168114620000ce57600080fd5b92915050565b60008060008060008060c08789031215620000ed578182fd5b620000f98888620000b6565b95506200010a8860208901620000b6565b94506200011b8860408901620000b6565b93506200012c8860608901620000b6565b92506200013d8860808901620000b6565b91506200014e8860a08901620000b6565b90509295509295509295565b60805160601c60a05160601c60c05160601c60e05160601c6101005160601c6117a7620001c260003980610a6d5280610ddd5250806107d35280610e2b52508061082c5280610d335250806107af5280610e7952508061087a5280610a9152506117a76000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063792d793b1161010f578063c06fe4ab116100a2578063eb774d0511610071578063eb774d0514610391578063ec2fd46d14610399578063ecfc2db0146103a1578063f2fde38b146103b4576101e5565b8063c06fe4ab14610366578063c2c2757b14610379578063ce90ea7414610381578063e0f5d89e14610389576101e5565b8063a58888db116100de578063a58888db14610325578063a6569b3f14610338578063a820636b14610340578063bdeb0a9114610353576101e5565b8063792d793b1461030557806381ab4d0a1461030d5780638456db151461031557806389edcf141461031d576101e5565b80634e71e0c81161018757806367de8be91161015657806367de8be9146102cf57806369e4e417146102e25780636c5ccb9b146102ea5780636ca2aa95146102f2576101e5565b80634e71e0c8146102815780635568587a1461028957806364ddb0131461029c5780636556c7e5146102af576101e5565b8063294dafc0116101c3578063294dafc0146102305780633ff9b61e1461024557806341a1759c1461024d5780634c59de661461026e576101e5565b806307b8a636146101ea5780630d009297146101ff57806316048bc414610212575b600080fd5b6101fd6101f8366004611389565b6103c7565b005b6101fd61020d3660046111ea565b6103ff565b61021a61045f565b604051610227919061142b565b60405180910390f35b61023861046e565b6040516102279190611750565b610238610474565b61026061025b366004611222565b61047a565b60405161022792919061147d565b6101fd61027c366004611389565b610572565b6101fd6105c9565b6101fd610297366004611389565b610657565b6101fd6102aa3660046111ea565b610686565b6102c26102bd366004611222565b6106d2565b604051610227919061146a565b6101fd6102dd366004611389565b610756565b61021a6107ad565b61021a6107d1565b6101fd610300366004611389565b6107f5565b610238610824565b61021a61082a565b61021a61084e565b61021a61085d565b61021a61033336600461135e565b610907565b61021a61093c565b6102c261034e3660046111ea565b61094b565b61021a61036136600461131e565b6109c1565b6101fd610374366004611389565b610a03565b610238610a5f565b610238610a65565b61021a610a6b565b61021a610a8f565b610238610ab3565b6101fd6103af36600461125a565b610ab9565b6101fd6103c23660046111ea565b61105f565b6000546001600160a01b031633146103fa5760405162461bcd60e51b81526004016103f19061170a565b60405180910390fd5b600555565b600154600160a01b900460ff16156104295760405162461bcd60e51b81526004016103f1906116e0565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b039092166001600160a01b0319909216919091179055565b6000546001600160a01b031681565b60085481565b60065481565b6001600160a01b038083166000818152600960208181526040808420958716845294815284832091815284832093835292835290839020815484518185028101850190955280855260609485949091849183018282801561050457602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116104e6575b505050505091508080548060200260200160405190810160405280929190818152602001828054801561056057602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610542575b50505050509050915091509250929050565b6000546001600160a01b0316331461059c5760405162461bcd60e51b81526004016103f19061170a565b670de0b6b3a76400008111156105c45760405162461bcd60e51b81526004016103f1906114f7565b600855565b6001546001600160a01b031633146105f35760405162461bcd60e51b81526004016103f190611525565b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b6000546001600160a01b031633146106815760405162461bcd60e51b81526004016103f19061170a565b600655565b6000546001600160a01b031633146106b05760405162461bcd60e51b81526004016103f19061170a565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03808316600090815260096020908152604080832093851683529281529082902080548351818402810184019094528084526060939283018282801561074857602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161072a575b505050505090505b92915050565b6000546001600160a01b031633146107805760405162461bcd60e51b81526004016103f19061170a565b670de0b6b3a76400008111156107a85760405162461bcd60e51b81526004016103f1906114f7565b600755565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b0316331461081f5760405162461bcd60e51b81526004016103f19061170a565b600455565b60035481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001546001600160a01b031681565b6002546040516340925bc760e11b81526000916001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692638124b78e926108b092169060040161142b565b602060405180830381600087803b1580156108ca57600080fd5b505af11580156108de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109029190611206565b905090565b600a602052816000526040600020818154811061092057fe5b6000918252602090912001546001600160a01b03169150829050565b6002546001600160a01b031681565b6001600160a01b0381166000908152600a60209081526040918290208054835181840281018401909452808452606093928301828280156109b557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610997575b50505050509050919050565b600960205282600052604060002060205281600052604060002081815481106109e657fe5b6000918252602090912001546001600160a01b0316925083915050565b6000546001600160a01b03163314610a2d5760405162461bcd60e51b81526004016103f19061170a565b600081118015610a3e575060648111155b610a5a5760405162461bcd60e51b81526004016103f1906114f7565b600355565b60055481565b60045481565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b60075481565b8685848460055482600281518110610acd57fe5b602002602001015114610af25760405162461bcd60e51b81526004016103f190611656565b60065482600481518110610b0257fe5b602002602001015114610b275760405162461bcd60e51b81526004016103f19061169e565b60075481600181518110610b3757fe5b602002602001015114610b5c5760405162461bcd60e51b81526004016103f1906115ef565b60085481600381518110610b6c57fe5b602002602001015114610b915760405162461bcd60e51b81526004016103f190611590565b6040516370a0823160e01b81526000906001600160a01b038516906370a0823190610bc090889060040161142b565b60206040518083038186803b158015610bd857600080fd5b505afa158015610bec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1091906113a1565b9050610c63600354610c57670de0b6b3a7640000610c4b86600281518110610c3457fe5b6020026020010151866110e490919063ffffffff16565b9063ffffffff61112516565b9063ffffffff6110e416565b610c8b606484600081518110610c7557fe5b60200260200101516110e490919063ffffffff16565b1115610ca95760405162461bcd60e51b81526004016103f19061161f565b60045483600381518110610cb957fe5b60200260200101511015610cdf5760405162461bcd60e51b81526004016103f19061154c565b60408051600780825261010082019092526060916020820160e0803683370190505090508b81600081518110610d1157fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600181518110610d5f57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250508a81600281518110610d8d57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250508981600381518110610dbb57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600481518110610e0957fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600581518110610e5757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600681518110610ea557fe5b6001600160a01b0392831660209182029290920101526040516341dd3c3360e11b8152908e16906383ba786690610ee69084908d908d908d906004016114ab565b600060405180830381600087803b158015610f0057600080fd5b505af1158015610f14573d6000803e3d6000fd5b5050505050600960008b6001600160a01b03166001600160a01b0316815260200190815260200160002060008a6001600160a01b03166001600160a01b031681526020019081526020016000208c9080600181540180825580915050600190039060005260206000200160009091909190916101000a8154816001600160a01b0302191690836001600160a01b03160217905550600a60008c6001600160a01b03166001600160a01b031681526020019081526020016000208c9080600181540180825580915050600190039060005260206000200160009091909190916101000a8154816001600160a01b0302191690836001600160a01b031602179055507f0bd1e8ce555b4ec75d8b1c8113a8812659e0d94f0b4c67637dc049434604b45d8a8a8d8f604051611049949392919061143f565b60405180910390a1505050505050505050505050565b6000546001600160a01b031633146110895760405162461bcd60e51b81526004016103f19061170a565b600080546040516001600160a01b03808516939216917fdcf55418cee3220104fef63f979ff3c4097ad240c0c43dcb33ce837748983e6291a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000826110f357506000610750565b8282028284828161110057fe5b041461111e5760405162461bcd60e51b81526004016103f19061172d565b9392505050565b60008082116111465760405162461bcd60e51b81526004016103f1906115c7565b81838161114f57fe5b049392505050565b600082601f830112611167578081fd5b813567ffffffffffffffff8082111561117e578283fd5b60208083026040518282820101818110858211171561119b578687fd5b6040528481529450818501925085820181870183018810156111bc57600080fd5b600091505b848210156111df5780358452928201926001919091019082016111c1565b505050505092915050565b6000602082840312156111fb578081fd5b813561111e81611759565b600060208284031215611217578081fd5b815161111e81611759565b60008060408385031215611234578081fd5b823561123f81611759565b9150602083013561124f81611759565b809150509250929050565b600080600080600080600060e0888a031215611274578283fd5b873561127f81611759565b9650602088013561128f81611759565b9550604088013561129f81611759565b945060608801356112af81611759565b9350608088013567ffffffffffffffff808211156112cb578485fd5b6112d78b838c01611157565b945060a08a01359150808211156112ec578384fd5b506112f98a828b01611157565b92505060c0880135801515811461130e578182fd5b8091505092959891949750929550565b600080600060608486031215611332578283fd5b833561133d81611759565b9250602084013561134d81611759565b929592945050506040919091013590565b60008060408385031215611370578182fd5b823561137b81611759565b946020939093013593505050565b60006020828403121561139a578081fd5b5035919050565b6000602082840312156113b2578081fd5b5051919050565b6000815180845260208085019450808401835b838110156113f15781516001600160a01b0316875295820195908201906001016113cc565b509495945050505050565b6000815180845260208085019450808401835b838110156113f15781518752958201959082019060010161140f565b6001600160a01b0391909116815260200190565b6001600160a01b03948516815292841660208401529083166040830152909116606082015260800190565b60006020825261111e60208301846113b9565b60006040825261149060408301856113b9565b82810360208401526114a281856113b9565b95945050505050565b6000608082526114be60808301876113b9565b82810360208401526114d081876113fc565b83810360408501526114e281876113fc565b92505050821515606083015295945050505050565b60208082526014908201527310d417d19050d513d496480e881253959053125160621b604082015260600190565b6020808252600d908201526c494e56414c49445f434c41494d60981b604082015260600190565b60208082526024908201527f43505f464143544f5259203a20465245455a455f4455524154494f4e5f494e566040820152631053125160e21b606082015260800190565b6020808252601f908201527f43505f464143544f5259203a20434c4946465f524154455f494e56414c494400604082015260600190565b6020808252600e908201526d2224ab24a224a723afa2a92927a960911b604082015260600190565b60208082526016908201527510d417d19050d513d496480e8812d7d253959053125160521b604082015260600190565b6020808252601e908201527f43505f464143544f5259203a2051554f54455f4341505f494e56414c49440000604082015260600190565b60208082526028908201527f43505f464143544f5259203a2050484153455f43414c4d5f4455524154494f4e60408201526717d253959053125160c21b606082015260800190565b60208082526022908201527f43505f464143544f5259203a20564553545f4455524154494f4e5f494e56414c604082015261125160f21b606082015260800190565b60208082526010908201526f1113d113d7d25392551250531256915160821b604082015260600190565b6020808252600990820152682727aa2fa7aba722a960b91b604082015260600190565b60208082526009908201526826aaa62fa2a92927a960b91b604082015260600190565b90815260200190565b6001600160a01b038116811461176e57600080fd5b5056fea264697066735822122033fc5c2ebd91c5b07cc8ced8b57edb4249143b7aa77171972badf84086fbeb7f64736f6c634300060900330000000000000000000000005e5a7b76462e4bdf83aa98795644281bdba80b8800000000000000000000000018b0bd918b55f995fd404b872404378a62cb403b00000000000000000000000072d220ce168c4f361dd4dee5d826a01ad8598f6c00000000000000000000000095c4f5b83aa70810d4f142d58e5f7242bd891cb00000000000000000000000005e84190a270333ace5b9202a3f4cebf11b81bb010000000000000000000000006b208e08dcf6bd51f50c5da09d15b2d8e5c46cf2

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063792d793b1161010f578063c06fe4ab116100a2578063eb774d0511610071578063eb774d0514610391578063ec2fd46d14610399578063ecfc2db0146103a1578063f2fde38b146103b4576101e5565b8063c06fe4ab14610366578063c2c2757b14610379578063ce90ea7414610381578063e0f5d89e14610389576101e5565b8063a58888db116100de578063a58888db14610325578063a6569b3f14610338578063a820636b14610340578063bdeb0a9114610353576101e5565b8063792d793b1461030557806381ab4d0a1461030d5780638456db151461031557806389edcf141461031d576101e5565b80634e71e0c81161018757806367de8be91161015657806367de8be9146102cf57806369e4e417146102e25780636c5ccb9b146102ea5780636ca2aa95146102f2576101e5565b80634e71e0c8146102815780635568587a1461028957806364ddb0131461029c5780636556c7e5146102af576101e5565b8063294dafc0116101c3578063294dafc0146102305780633ff9b61e1461024557806341a1759c1461024d5780634c59de661461026e576101e5565b806307b8a636146101ea5780630d009297146101ff57806316048bc414610212575b600080fd5b6101fd6101f8366004611389565b6103c7565b005b6101fd61020d3660046111ea565b6103ff565b61021a61045f565b604051610227919061142b565b60405180910390f35b61023861046e565b6040516102279190611750565b610238610474565b61026061025b366004611222565b61047a565b60405161022792919061147d565b6101fd61027c366004611389565b610572565b6101fd6105c9565b6101fd610297366004611389565b610657565b6101fd6102aa3660046111ea565b610686565b6102c26102bd366004611222565b6106d2565b604051610227919061146a565b6101fd6102dd366004611389565b610756565b61021a6107ad565b61021a6107d1565b6101fd610300366004611389565b6107f5565b610238610824565b61021a61082a565b61021a61084e565b61021a61085d565b61021a61033336600461135e565b610907565b61021a61093c565b6102c261034e3660046111ea565b61094b565b61021a61036136600461131e565b6109c1565b6101fd610374366004611389565b610a03565b610238610a5f565b610238610a65565b61021a610a6b565b61021a610a8f565b610238610ab3565b6101fd6103af36600461125a565b610ab9565b6101fd6103c23660046111ea565b61105f565b6000546001600160a01b031633146103fa5760405162461bcd60e51b81526004016103f19061170a565b60405180910390fd5b600555565b600154600160a01b900460ff16156104295760405162461bcd60e51b81526004016103f1906116e0565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b039092166001600160a01b0319909216919091179055565b6000546001600160a01b031681565b60085481565b60065481565b6001600160a01b038083166000818152600960208181526040808420958716845294815284832091815284832093835292835290839020815484518185028101850190955280855260609485949091849183018282801561050457602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116104e6575b505050505091508080548060200260200160405190810160405280929190818152602001828054801561056057602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610542575b50505050509050915091509250929050565b6000546001600160a01b0316331461059c5760405162461bcd60e51b81526004016103f19061170a565b670de0b6b3a76400008111156105c45760405162461bcd60e51b81526004016103f1906114f7565b600855565b6001546001600160a01b031633146105f35760405162461bcd60e51b81526004016103f190611525565b600154600080546040516001600160a01b0393841693909116917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a360018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b6000546001600160a01b031633146106815760405162461bcd60e51b81526004016103f19061170a565b600655565b6000546001600160a01b031633146106b05760405162461bcd60e51b81526004016103f19061170a565b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03808316600090815260096020908152604080832093851683529281529082902080548351818402810184019094528084526060939283018282801561074857602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161072a575b505050505090505b92915050565b6000546001600160a01b031633146107805760405162461bcd60e51b81526004016103f19061170a565b670de0b6b3a76400008111156107a85760405162461bcd60e51b81526004016103f1906114f7565b600755565b7f00000000000000000000000072d220ce168c4f361dd4dee5d826a01ad8598f6c81565b7f0000000000000000000000005e84190a270333ace5b9202a3f4cebf11b81bb0181565b6000546001600160a01b0316331461081f5760405162461bcd60e51b81526004016103f19061170a565b600455565b60035481565b7f00000000000000000000000095c4f5b83aa70810d4f142d58e5f7242bd891cb081565b6001546001600160a01b031681565b6002546040516340925bc760e11b81526000916001600160a01b037f0000000000000000000000005e5a7b76462e4bdf83aa98795644281bdba80b88811692638124b78e926108b092169060040161142b565b602060405180830381600087803b1580156108ca57600080fd5b505af11580156108de573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109029190611206565b905090565b600a602052816000526040600020818154811061092057fe5b6000918252602090912001546001600160a01b03169150829050565b6002546001600160a01b031681565b6001600160a01b0381166000908152600a60209081526040918290208054835181840281018401909452808452606093928301828280156109b557602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610997575b50505050509050919050565b600960205282600052604060002060205281600052604060002081815481106109e657fe5b6000918252602090912001546001600160a01b0316925083915050565b6000546001600160a01b03163314610a2d5760405162461bcd60e51b81526004016103f19061170a565b600081118015610a3e575060648111155b610a5a5760405162461bcd60e51b81526004016103f1906114f7565b600355565b60055481565b60045481565b7f0000000000000000000000006b208e08dcf6bd51f50c5da09d15b2d8e5c46cf281565b7f0000000000000000000000005e5a7b76462e4bdf83aa98795644281bdba80b8881565b60075481565b8685848460055482600281518110610acd57fe5b602002602001015114610af25760405162461bcd60e51b81526004016103f190611656565b60065482600481518110610b0257fe5b602002602001015114610b275760405162461bcd60e51b81526004016103f19061169e565b60075481600181518110610b3757fe5b602002602001015114610b5c5760405162461bcd60e51b81526004016103f1906115ef565b60085481600381518110610b6c57fe5b602002602001015114610b915760405162461bcd60e51b81526004016103f190611590565b6040516370a0823160e01b81526000906001600160a01b038516906370a0823190610bc090889060040161142b565b60206040518083038186803b158015610bd857600080fd5b505afa158015610bec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1091906113a1565b9050610c63600354610c57670de0b6b3a7640000610c4b86600281518110610c3457fe5b6020026020010151866110e490919063ffffffff16565b9063ffffffff61112516565b9063ffffffff6110e416565b610c8b606484600081518110610c7557fe5b60200260200101516110e490919063ffffffff16565b1115610ca95760405162461bcd60e51b81526004016103f19061161f565b60045483600381518110610cb957fe5b60200260200101511015610cdf5760405162461bcd60e51b81526004016103f19061154c565b60408051600780825261010082019092526060916020820160e0803683370190505090508b81600081518110610d1157fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000095c4f5b83aa70810d4f142d58e5f7242bd891cb081600181518110610d5f57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250508a81600281518110610d8d57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250508981600381518110610dbb57fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000006b208e08dcf6bd51f50c5da09d15b2d8e5c46cf281600481518110610e0957fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000005e84190a270333ace5b9202a3f4cebf11b81bb0181600581518110610e5757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000072d220ce168c4f361dd4dee5d826a01ad8598f6c81600681518110610ea557fe5b6001600160a01b0392831660209182029290920101526040516341dd3c3360e11b8152908e16906383ba786690610ee69084908d908d908d906004016114ab565b600060405180830381600087803b158015610f0057600080fd5b505af1158015610f14573d6000803e3d6000fd5b5050505050600960008b6001600160a01b03166001600160a01b0316815260200190815260200160002060008a6001600160a01b03166001600160a01b031681526020019081526020016000208c9080600181540180825580915050600190039060005260206000200160009091909190916101000a8154816001600160a01b0302191690836001600160a01b03160217905550600a60008c6001600160a01b03166001600160a01b031681526020019081526020016000208c9080600181540180825580915050600190039060005260206000200160009091909190916101000a8154816001600160a01b0302191690836001600160a01b031602179055507f0bd1e8ce555b4ec75d8b1c8113a8812659e0d94f0b4c67637dc049434604b45d8a8a8d8f604051611049949392919061143f565b60405180910390a1505050505050505050505050565b6000546001600160a01b031633146110895760405162461bcd60e51b81526004016103f19061170a565b600080546040516001600160a01b03808516939216917fdcf55418cee3220104fef63f979ff3c4097ad240c0c43dcb33ce837748983e6291a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000826110f357506000610750565b8282028284828161110057fe5b041461111e5760405162461bcd60e51b81526004016103f19061172d565b9392505050565b60008082116111465760405162461bcd60e51b81526004016103f1906115c7565b81838161114f57fe5b049392505050565b600082601f830112611167578081fd5b813567ffffffffffffffff8082111561117e578283fd5b60208083026040518282820101818110858211171561119b578687fd5b6040528481529450818501925085820181870183018810156111bc57600080fd5b600091505b848210156111df5780358452928201926001919091019082016111c1565b505050505092915050565b6000602082840312156111fb578081fd5b813561111e81611759565b600060208284031215611217578081fd5b815161111e81611759565b60008060408385031215611234578081fd5b823561123f81611759565b9150602083013561124f81611759565b809150509250929050565b600080600080600080600060e0888a031215611274578283fd5b873561127f81611759565b9650602088013561128f81611759565b9550604088013561129f81611759565b945060608801356112af81611759565b9350608088013567ffffffffffffffff808211156112cb578485fd5b6112d78b838c01611157565b945060a08a01359150808211156112ec578384fd5b506112f98a828b01611157565b92505060c0880135801515811461130e578182fd5b8091505092959891949750929550565b600080600060608486031215611332578283fd5b833561133d81611759565b9250602084013561134d81611759565b929592945050506040919091013590565b60008060408385031215611370578182fd5b823561137b81611759565b946020939093013593505050565b60006020828403121561139a578081fd5b5035919050565b6000602082840312156113b2578081fd5b5051919050565b6000815180845260208085019450808401835b838110156113f15781516001600160a01b0316875295820195908201906001016113cc565b509495945050505050565b6000815180845260208085019450808401835b838110156113f15781518752958201959082019060010161140f565b6001600160a01b0391909116815260200190565b6001600160a01b03948516815292841660208401529083166040830152909116606082015260800190565b60006020825261111e60208301846113b9565b60006040825261149060408301856113b9565b82810360208401526114a281856113b9565b95945050505050565b6000608082526114be60808301876113b9565b82810360208401526114d081876113fc565b83810360408501526114e281876113fc565b92505050821515606083015295945050505050565b60208082526014908201527310d417d19050d513d496480e881253959053125160621b604082015260600190565b6020808252600d908201526c494e56414c49445f434c41494d60981b604082015260600190565b60208082526024908201527f43505f464143544f5259203a20465245455a455f4455524154494f4e5f494e566040820152631053125160e21b606082015260800190565b6020808252601f908201527f43505f464143544f5259203a20434c4946465f524154455f494e56414c494400604082015260600190565b6020808252600e908201526d2224ab24a224a723afa2a92927a960911b604082015260600190565b60208082526016908201527510d417d19050d513d496480e8812d7d253959053125160521b604082015260600190565b6020808252601e908201527f43505f464143544f5259203a2051554f54455f4341505f494e56414c49440000604082015260600190565b60208082526028908201527f43505f464143544f5259203a2050484153455f43414c4d5f4455524154494f4e60408201526717d253959053125160c21b606082015260800190565b60208082526022908201527f43505f464143544f5259203a20564553545f4455524154494f4e5f494e56414c604082015261125160f21b606082015260800190565b60208082526010908201526f1113d113d7d25392551250531256915160821b604082015260600190565b6020808252600990820152682727aa2fa7aba722a960b91b604082015260600190565b60208082526009908201526826aaa62fa2a92927a960b91b604082015260600190565b90815260200190565b6001600160a01b038116811461176e57600080fd5b5056fea264697066735822122033fc5c2ebd91c5b07cc8ced8b57edb4249143b7aa77171972badf84086fbeb7f64736f6c63430006090033