Address Details
contract
token

0x34C11A932853Ae24E845Ad4B633E3cEf91afE583

Token
cRECY (cRECY)
Creator
0x88f800–bf307d at 0x10e98a–598442
Balance
0 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
225 Transactions
Transfers
3 Transfers
Gas Used
9,580,240
Last Balance Update
25103847
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
MyToken




Optimization enabled
false
Compiler version
v0.8.7+commit.e28d00a7




EVM Version
london




Verified at
2022-04-10T22:24:45.331257Z

contracts/erc20.sol

// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";

contract MyToken is ERC20Capped, ERC20Burnable, Pausable, Ownable {


    constructor(uint256 cap, uint256 initialSupply) ERC20("cRECY", "cRECY") ERC20Capped(cap*10**18){
        ERC20._mint(msg.sender, initialSupply*10**18);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

        function _mint(address to, uint256 amount) internal override (ERC20,ERC20Capped)
    {
    require(ERC20.totalSupply() + amount <= cap(), "cRECY Capped: cap exceeded");
    super._mint(to, amount);
    }

    function mint(address to, uint256 amount) public onlyOwner {
        _mint(to, amount);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}
        

/_openzeppelin/contracts/access/Ownable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

/_openzeppelin/contracts/security/Pausable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}
          

/_openzeppelin/contracts/token/ERC20/IERC20.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}
          

/_openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}
          

/_openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}
          

/_openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
          

/_openzeppelin/contracts/utils/Context.sol

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

pragma solidity ^0.8.0;

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

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

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"uint256","name":"cap","internalType":"uint256"},{"type":"uint256","name":"initialSupply","internalType":"uint256"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"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":"event","name":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"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":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"cap","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"mint","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"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":"nonpayable","outputs":[],"name":"pause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"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":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unpause","inputs":[]}]
              

Contract Creation Code

0x60a06040523480156200001157600080fd5b5060405162002c6b38038062002c6b83398181016040528101906200003791906200054a565b670de0b6b3a7640000826200004d919062000708565b6040518060400160405280600581526020017f63524543590000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f63524543590000000000000000000000000000000000000000000000000000008152508160039080519060200190620000d192919062000483565b508060049080519060200190620000ea92919062000483565b5050506000811162000133576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012a9062000617565b60405180910390fd5b8060808181525050506000600560006101000a81548160ff021916908315150217905550620001776200016b620001ab60201b60201c565b620001b360201b60201c565b620001a333670de0b6b3a76400008362000192919062000708565b6200027960201b62000bae1760201c565b5050620008a1565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002ec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e3906200065b565b60405180910390fd5b6200030060008383620003f260201b60201c565b8060026000828254620003149190620006ab565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200036b9190620006ab565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003d291906200067d565b60405180910390a3620003ee600083836200046260201b60201c565b5050565b620004026200046760201b60201c565b1562000445576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200043c9062000639565b60405180910390fd5b6200045d8383836200047e60201b62000d0e1760201c565b505050565b505050565b6000600560009054906101000a900460ff16905090565b505050565b828054620004919062000773565b90600052602060002090601f016020900481019282620004b5576000855562000501565b82601f10620004d057805160ff191683800117855562000501565b8280016001018555821562000501579182015b8281111562000500578251825591602001919060010190620004e3565b5b50905062000510919062000514565b5090565b5b808211156200052f57600081600090555060010162000515565b5090565b600081519050620005448162000887565b92915050565b6000806040838503121562000564576200056362000807565b5b6000620005748582860162000533565b9250506020620005878582860162000533565b9150509250929050565b6000620005a06015836200069a565b9150620005ad826200080c565b602082019050919050565b6000620005c76010836200069a565b9150620005d48262000835565b602082019050919050565b6000620005ee601f836200069a565b9150620005fb826200085e565b602082019050919050565b620006118162000769565b82525050565b60006020820190508181036000830152620006328162000591565b9050919050565b600060208201905081810360008301526200065481620005b8565b9050919050565b600060208201905081810360008301526200067681620005df565b9050919050565b600060208201905062000694600083018462000606565b92915050565b600082825260208201905092915050565b6000620006b88262000769565b9150620006c58362000769565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006fd57620006fc620007a9565b5b828201905092915050565b6000620007158262000769565b9150620007228362000769565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200075e576200075d620007a9565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200078c57607f821691505b60208210811415620007a357620007a2620007d8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620008928162000769565b81146200089e57600080fd5b50565b6080516123ae620008bd60003960006104e701526123ae6000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80635c975abb116100b85780638da5cb5b1161007c5780638da5cb5b1461030457806395d89b4114610322578063a457c2d714610340578063a9059cbb14610370578063dd62ed3e146103a0578063f2fde38b146103d057610137565b80635c975abb1461028657806370a08231146102a4578063715018a6146102d457806379cc6790146102de5780638456cb59146102fa57610137565b8063355274ea116100ff578063355274ea146101f657806339509351146102145780633f4ba83a1461024457806340c10f191461024e57806342966c681461026a57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b6101446103ec565b6040516101519190611b38565b60405180910390f35b610174600480360381019061016f91906117f0565b61047e565b6040516101819190611b1d565b60405180910390f35b6101926104a1565b60405161019f9190611d5a565b60405180910390f35b6101c260048036038101906101bd919061179d565b6104ab565b6040516101cf9190611b1d565b60405180910390f35b6101e06104da565b6040516101ed9190611d75565b60405180910390f35b6101fe6104e3565b60405161020b9190611d5a565b60405180910390f35b61022e600480360381019061022991906117f0565b61050b565b60405161023b9190611b1d565b60405180910390f35b61024c6105b5565b005b610268600480360381019061026391906117f0565b61063b565b005b610284600480360381019061027f9190611830565b6106c5565b005b61028e6106d9565b60405161029b9190611b1d565b60405180910390f35b6102be60048036038101906102b99190611730565b6106f0565b6040516102cb9190611d5a565b60405180910390f35b6102dc610738565b005b6102f860048036038101906102f391906117f0565b6107c0565b005b6103026107e0565b005b61030c610866565b6040516103199190611b02565b60405180910390f35b61032a610890565b6040516103379190611b38565b60405180910390f35b61035a600480360381019061035591906117f0565b610922565b6040516103679190611b1d565b60405180910390f35b61038a600480360381019061038591906117f0565b610a0c565b6040516103979190611b1d565b60405180910390f35b6103ba60048036038101906103b5919061175d565b610a2f565b6040516103c79190611d5a565b60405180910390f35b6103ea60048036038101906103e59190611730565b610ab6565b005b6060600380546103fb90611ebe565b80601f016020809104026020016040519081016040528092919081815260200182805461042790611ebe565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b600080610489610d13565b9050610496818585610d1b565b600191505092915050565b6000600254905090565b6000806104b6610d13565b90506104c3858285610ee6565b6104ce858585610f72565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600080610516610d13565b90506105aa818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105a59190611dac565b610d1b565b600191505092915050565b6105bd610d13565b73ffffffffffffffffffffffffffffffffffffffff166105db610866565b73ffffffffffffffffffffffffffffffffffffffff1614610631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062890611c7a565b60405180910390fd5b6106396111f3565b565b610643610d13565b73ffffffffffffffffffffffffffffffffffffffff16610661610866565b73ffffffffffffffffffffffffffffffffffffffff16146106b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ae90611c7a565b60405180910390fd5b6106c18282611295565b5050565b6106d66106d0610d13565b826112ff565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610740610d13565b73ffffffffffffffffffffffffffffffffffffffff1661075e610866565b73ffffffffffffffffffffffffffffffffffffffff16146107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab90611c7a565b60405180910390fd5b6107be60006114d6565b565b6107d2826107cc610d13565b83610ee6565b6107dc82826112ff565b5050565b6107e8610d13565b73ffffffffffffffffffffffffffffffffffffffff16610806610866565b73ffffffffffffffffffffffffffffffffffffffff161461085c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085390611c7a565b60405180910390fd5b61086461159c565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461089f90611ebe565b80601f01602080910402602001604051908101604052809291908181526020018280546108cb90611ebe565b80156109185780601f106108ed57610100808354040283529160200191610918565b820191906000526020600020905b8154815290600101906020018083116108fb57829003601f168201915b5050505050905090565b60008061092d610d13565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea90611d1a565b60405180910390fd5b610a008286868403610d1b565b60019250505092915050565b600080610a17610d13565b9050610a24818585610f72565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610abe610d13565b73ffffffffffffffffffffffffffffffffffffffff16610adc610866565b73ffffffffffffffffffffffffffffffffffffffff1614610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2990611c7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990611bba565b60405180910390fd5b610bab816114d6565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590611d3a565b60405180910390fd5b610c2a6000838361163f565b8060026000828254610c3c9190611dac565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c919190611dac565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cf69190611d5a565b60405180910390a3610d0a60008383611697565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290611cfa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df290611bda565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ed99190611d5a565b60405180910390a3505050565b6000610ef28484610a2f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f6c5781811015610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590611bfa565b60405180910390fd5b610f6b8484848403610d1b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990611cba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104990611b5a565b60405180910390fd5b61105d83838361163f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90611c1a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111769190611dac565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111da9190611d5a565b60405180910390a36111ed848484611697565b50505050565b6111fb6106d9565b61123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190611b7a565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61127e610d13565b60405161128b9190611b02565b60405180910390a1565b61129d6104e3565b816112a66104a1565b6112b09190611dac565b11156112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890611c5a565b60405180910390fd5b6112fb828261169c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136690611c9a565b60405180910390fd5b61137b8260008361163f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890611b9a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546114589190611e02565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114bd9190611d5a565b60405180910390a36114d183600084611697565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115a46106d9565b156115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90611c3a565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611628610d13565b6040516116359190611b02565b60405180910390a1565b6116476106d9565b15611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e90611c3a565b60405180910390fd5b611692838383610d0e565b505050565b505050565b6116a46104e3565b816116ad6104a1565b6116b79190611dac565b11156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90611cda565b60405180910390fd5b6117028282610bae565b5050565b6000813590506117158161234a565b92915050565b60008135905061172a81612361565b92915050565b60006020828403121561174657611745611f4e565b5b600061175484828501611706565b91505092915050565b6000806040838503121561177457611773611f4e565b5b600061178285828601611706565b925050602061179385828601611706565b9150509250929050565b6000806000606084860312156117b6576117b5611f4e565b5b60006117c486828701611706565b93505060206117d586828701611706565b92505060406117e68682870161171b565b9150509250925092565b6000806040838503121561180757611806611f4e565b5b600061181585828601611706565b92505060206118268582860161171b565b9150509250929050565b60006020828403121561184657611845611f4e565b5b60006118548482850161171b565b91505092915050565b61186681611e36565b82525050565b61187581611e48565b82525050565b600061188682611d90565b6118908185611d9b565b93506118a0818560208601611e8b565b6118a981611f53565b840191505092915050565b60006118c1602383611d9b565b91506118cc82611f64565b604082019050919050565b60006118e4601483611d9b565b91506118ef82611fb3565b602082019050919050565b6000611907602283611d9b565b915061191282611fdc565b604082019050919050565b600061192a602683611d9b565b91506119358261202b565b604082019050919050565b600061194d602283611d9b565b91506119588261207a565b604082019050919050565b6000611970601d83611d9b565b915061197b826120c9565b602082019050919050565b6000611993602683611d9b565b915061199e826120f2565b604082019050919050565b60006119b6601083611d9b565b91506119c182612141565b602082019050919050565b60006119d9601a83611d9b565b91506119e48261216a565b602082019050919050565b60006119fc602083611d9b565b9150611a0782612193565b602082019050919050565b6000611a1f602183611d9b565b9150611a2a826121bc565b604082019050919050565b6000611a42602583611d9b565b9150611a4d8261220b565b604082019050919050565b6000611a65601983611d9b565b9150611a708261225a565b602082019050919050565b6000611a88602483611d9b565b9150611a9382612283565b604082019050919050565b6000611aab602583611d9b565b9150611ab6826122d2565b604082019050919050565b6000611ace601f83611d9b565b9150611ad982612321565b602082019050919050565b611aed81611e74565b82525050565b611afc81611e7e565b82525050565b6000602082019050611b17600083018461185d565b92915050565b6000602082019050611b32600083018461186c565b92915050565b60006020820190508181036000830152611b52818461187b565b905092915050565b60006020820190508181036000830152611b73816118b4565b9050919050565b60006020820190508181036000830152611b93816118d7565b9050919050565b60006020820190508181036000830152611bb3816118fa565b9050919050565b60006020820190508181036000830152611bd38161191d565b9050919050565b60006020820190508181036000830152611bf381611940565b9050919050565b60006020820190508181036000830152611c1381611963565b9050919050565b60006020820190508181036000830152611c3381611986565b9050919050565b60006020820190508181036000830152611c53816119a9565b9050919050565b60006020820190508181036000830152611c73816119cc565b9050919050565b60006020820190508181036000830152611c93816119ef565b9050919050565b60006020820190508181036000830152611cb381611a12565b9050919050565b60006020820190508181036000830152611cd381611a35565b9050919050565b60006020820190508181036000830152611cf381611a58565b9050919050565b60006020820190508181036000830152611d1381611a7b565b9050919050565b60006020820190508181036000830152611d3381611a9e565b9050919050565b60006020820190508181036000830152611d5381611ac1565b9050919050565b6000602082019050611d6f6000830184611ae4565b92915050565b6000602082019050611d8a6000830184611af3565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611db782611e74565b9150611dc283611e74565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611df757611df6611ef0565b5b828201905092915050565b6000611e0d82611e74565b9150611e1883611e74565b925082821015611e2b57611e2a611ef0565b5b828203905092915050565b6000611e4182611e54565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ea9578082015181840152602081019050611e8e565b83811115611eb8576000848401525b50505050565b60006002820490506001821680611ed657607f821691505b60208210811415611eea57611ee9611f1f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f6352454359204361707065643a20636170206578636565646564000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61235381611e36565b811461235e57600080fd5b50565b61236a81611e74565b811461237557600080fd5b5056fea264697066735822122052ca5197045e65a8b2de46aaf2071467e735424b16b479a1976704135ca2731364736f6c6343000807003300000000000000000000000000000000000000000000000000000000014fb18000000000000000000000000000000000000000000000000000000000000007d0

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c80635c975abb116100b85780638da5cb5b1161007c5780638da5cb5b1461030457806395d89b4114610322578063a457c2d714610340578063a9059cbb14610370578063dd62ed3e146103a0578063f2fde38b146103d057610137565b80635c975abb1461028657806370a08231146102a4578063715018a6146102d457806379cc6790146102de5780638456cb59146102fa57610137565b8063355274ea116100ff578063355274ea146101f657806339509351146102145780633f4ba83a1461024457806340c10f191461024e57806342966c681461026a57610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a8578063313ce567146101d8575b600080fd5b6101446103ec565b6040516101519190611b38565b60405180910390f35b610174600480360381019061016f91906117f0565b61047e565b6040516101819190611b1d565b60405180910390f35b6101926104a1565b60405161019f9190611d5a565b60405180910390f35b6101c260048036038101906101bd919061179d565b6104ab565b6040516101cf9190611b1d565b60405180910390f35b6101e06104da565b6040516101ed9190611d75565b60405180910390f35b6101fe6104e3565b60405161020b9190611d5a565b60405180910390f35b61022e600480360381019061022991906117f0565b61050b565b60405161023b9190611b1d565b60405180910390f35b61024c6105b5565b005b610268600480360381019061026391906117f0565b61063b565b005b610284600480360381019061027f9190611830565b6106c5565b005b61028e6106d9565b60405161029b9190611b1d565b60405180910390f35b6102be60048036038101906102b99190611730565b6106f0565b6040516102cb9190611d5a565b60405180910390f35b6102dc610738565b005b6102f860048036038101906102f391906117f0565b6107c0565b005b6103026107e0565b005b61030c610866565b6040516103199190611b02565b60405180910390f35b61032a610890565b6040516103379190611b38565b60405180910390f35b61035a600480360381019061035591906117f0565b610922565b6040516103679190611b1d565b60405180910390f35b61038a600480360381019061038591906117f0565b610a0c565b6040516103979190611b1d565b60405180910390f35b6103ba60048036038101906103b5919061175d565b610a2f565b6040516103c79190611d5a565b60405180910390f35b6103ea60048036038101906103e59190611730565b610ab6565b005b6060600380546103fb90611ebe565b80601f016020809104026020016040519081016040528092919081815260200182805461042790611ebe565b80156104745780601f1061044957610100808354040283529160200191610474565b820191906000526020600020905b81548152906001019060200180831161045757829003601f168201915b5050505050905090565b600080610489610d13565b9050610496818585610d1b565b600191505092915050565b6000600254905090565b6000806104b6610d13565b90506104c3858285610ee6565b6104ce858585610f72565b60019150509392505050565b60006012905090565b60007f0000000000000000000000000000000000000000001232ae63c59c6bd6000000905090565b600080610516610d13565b90506105aa818585600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105a59190611dac565b610d1b565b600191505092915050565b6105bd610d13565b73ffffffffffffffffffffffffffffffffffffffff166105db610866565b73ffffffffffffffffffffffffffffffffffffffff1614610631576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062890611c7a565b60405180910390fd5b6106396111f3565b565b610643610d13565b73ffffffffffffffffffffffffffffffffffffffff16610661610866565b73ffffffffffffffffffffffffffffffffffffffff16146106b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ae90611c7a565b60405180910390fd5b6106c18282611295565b5050565b6106d66106d0610d13565b826112ff565b50565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610740610d13565b73ffffffffffffffffffffffffffffffffffffffff1661075e610866565b73ffffffffffffffffffffffffffffffffffffffff16146107b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ab90611c7a565b60405180910390fd5b6107be60006114d6565b565b6107d2826107cc610d13565b83610ee6565b6107dc82826112ff565b5050565b6107e8610d13565b73ffffffffffffffffffffffffffffffffffffffff16610806610866565b73ffffffffffffffffffffffffffffffffffffffff161461085c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085390611c7a565b60405180910390fd5b61086461159c565b565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461089f90611ebe565b80601f01602080910402602001604051908101604052809291908181526020018280546108cb90611ebe565b80156109185780601f106108ed57610100808354040283529160200191610918565b820191906000526020600020905b8154815290600101906020018083116108fb57829003601f168201915b5050505050905090565b60008061092d610d13565b90506000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea90611d1a565b60405180910390fd5b610a008286868403610d1b565b60019250505092915050565b600080610a17610d13565b9050610a24818585610f72565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610abe610d13565b73ffffffffffffffffffffffffffffffffffffffff16610adc610866565b73ffffffffffffffffffffffffffffffffffffffff1614610b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2990611c7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9990611bba565b60405180910390fd5b610bab816114d6565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1590611d3a565b60405180910390fd5b610c2a6000838361163f565b8060026000828254610c3c9190611dac565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c919190611dac565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610cf69190611d5a565b60405180910390a3610d0a60008383611697565b5050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290611cfa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df290611bda565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610ed99190611d5a565b60405180910390a3505050565b6000610ef28484610a2f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f6c5781811015610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5590611bfa565b60405180910390fd5b610f6b8484848403610d1b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990611cba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611052576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104990611b5a565b60405180910390fd5b61105d83838361163f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90611c1a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111769190611dac565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111da9190611d5a565b60405180910390a36111ed848484611697565b50505050565b6111fb6106d9565b61123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190611b7a565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61127e610d13565b60405161128b9190611b02565b60405180910390a1565b61129d6104e3565b816112a66104a1565b6112b09190611dac565b11156112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890611c5a565b60405180910390fd5b6112fb828261169c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136690611c9a565b60405180910390fd5b61137b8260008361163f565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890611b9a565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546114589190611e02565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114bd9190611d5a565b60405180910390a36114d183600084611697565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6115a46106d9565b156115e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115db90611c3a565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611628610d13565b6040516116359190611b02565b60405180910390a1565b6116476106d9565b15611687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167e90611c3a565b60405180910390fd5b611692838383610d0e565b505050565b505050565b6116a46104e3565b816116ad6104a1565b6116b79190611dac565b11156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef90611cda565b60405180910390fd5b6117028282610bae565b5050565b6000813590506117158161234a565b92915050565b60008135905061172a81612361565b92915050565b60006020828403121561174657611745611f4e565b5b600061175484828501611706565b91505092915050565b6000806040838503121561177457611773611f4e565b5b600061178285828601611706565b925050602061179385828601611706565b9150509250929050565b6000806000606084860312156117b6576117b5611f4e565b5b60006117c486828701611706565b93505060206117d586828701611706565b92505060406117e68682870161171b565b9150509250925092565b6000806040838503121561180757611806611f4e565b5b600061181585828601611706565b92505060206118268582860161171b565b9150509250929050565b60006020828403121561184657611845611f4e565b5b60006118548482850161171b565b91505092915050565b61186681611e36565b82525050565b61187581611e48565b82525050565b600061188682611d90565b6118908185611d9b565b93506118a0818560208601611e8b565b6118a981611f53565b840191505092915050565b60006118c1602383611d9b565b91506118cc82611f64565b604082019050919050565b60006118e4601483611d9b565b91506118ef82611fb3565b602082019050919050565b6000611907602283611d9b565b915061191282611fdc565b604082019050919050565b600061192a602683611d9b565b91506119358261202b565b604082019050919050565b600061194d602283611d9b565b91506119588261207a565b604082019050919050565b6000611970601d83611d9b565b915061197b826120c9565b602082019050919050565b6000611993602683611d9b565b915061199e826120f2565b604082019050919050565b60006119b6601083611d9b565b91506119c182612141565b602082019050919050565b60006119d9601a83611d9b565b91506119e48261216a565b602082019050919050565b60006119fc602083611d9b565b9150611a0782612193565b602082019050919050565b6000611a1f602183611d9b565b9150611a2a826121bc565b604082019050919050565b6000611a42602583611d9b565b9150611a4d8261220b565b604082019050919050565b6000611a65601983611d9b565b9150611a708261225a565b602082019050919050565b6000611a88602483611d9b565b9150611a9382612283565b604082019050919050565b6000611aab602583611d9b565b9150611ab6826122d2565b604082019050919050565b6000611ace601f83611d9b565b9150611ad982612321565b602082019050919050565b611aed81611e74565b82525050565b611afc81611e7e565b82525050565b6000602082019050611b17600083018461185d565b92915050565b6000602082019050611b32600083018461186c565b92915050565b60006020820190508181036000830152611b52818461187b565b905092915050565b60006020820190508181036000830152611b73816118b4565b9050919050565b60006020820190508181036000830152611b93816118d7565b9050919050565b60006020820190508181036000830152611bb3816118fa565b9050919050565b60006020820190508181036000830152611bd38161191d565b9050919050565b60006020820190508181036000830152611bf381611940565b9050919050565b60006020820190508181036000830152611c1381611963565b9050919050565b60006020820190508181036000830152611c3381611986565b9050919050565b60006020820190508181036000830152611c53816119a9565b9050919050565b60006020820190508181036000830152611c73816119cc565b9050919050565b60006020820190508181036000830152611c93816119ef565b9050919050565b60006020820190508181036000830152611cb381611a12565b9050919050565b60006020820190508181036000830152611cd381611a35565b9050919050565b60006020820190508181036000830152611cf381611a58565b9050919050565b60006020820190508181036000830152611d1381611a7b565b9050919050565b60006020820190508181036000830152611d3381611a9e565b9050919050565b60006020820190508181036000830152611d5381611ac1565b9050919050565b6000602082019050611d6f6000830184611ae4565b92915050565b6000602082019050611d8a6000830184611af3565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611db782611e74565b9150611dc283611e74565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611df757611df6611ef0565b5b828201905092915050565b6000611e0d82611e74565b9150611e1883611e74565b925082821015611e2b57611e2a611ef0565b5b828203905092915050565b6000611e4182611e54565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611ea9578082015181840152602081019050611e8e565b83811115611eb8576000848401525b50505050565b60006002820490506001821680611ed657607f821691505b60208210811415611eea57611ee9611f1f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f6352454359204361707065643a20636170206578636565646564000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61235381611e36565b811461235e57600080fd5b50565b61236a81611e74565b811461237557600080fd5b5056fea264697066735822122052ca5197045e65a8b2de46aaf2071467e735424b16b479a1976704135ca2731364736f6c63430008070033