From cf6dd1d49b66030490f09a888b2832490bcce106 Mon Sep 17 00:00:00 2001 From: CounterFire2023 <136581895+CounterFire2023@users.noreply.github.com> Date: Tue, 10 Sep 2024 09:58:15 +0800 Subject: [PATCH] remove estoken2 --- contracts/tokens/erc20/EsToken2.sol | 151 -------- deployments/bsc_test/CECDistributor.json | 334 ++++++++++-------- ... => d182e288a80dfac1af2ff3d65d72ce7e.json} | 2 +- simple_abi/CECDistributor.json | 30 ++ 4 files changed, 219 insertions(+), 298 deletions(-) delete mode 100644 contracts/tokens/erc20/EsToken2.sol rename deployments/bsc_test/solcInputs/{51ba64eae03e4e6310445724f0bd32d5.json => d182e288a80dfac1af2ff3d65d72ce7e.json} (89%) create mode 100644 simple_abi/CECDistributor.json diff --git a/contracts/tokens/erc20/EsToken2.sol b/contracts/tokens/erc20/EsToken2.sol deleted file mode 100644 index 3afeb1e..0000000 --- a/contracts/tokens/erc20/EsToken2.sol +++ /dev/null @@ -1,151 +0,0 @@ -// SPDX-License-Identifier: MIT - -pragma solidity 0.8.19; - -import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; -import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; -import {IMintable} from "../../interfaces/IMintable.sol"; -import {Governable} from "../../core/Governable.sol"; - -contract EsToken2 is IERC20, IMintable, Governable { - using SafeERC20 for IERC20; - - string public name; - string public symbol; - uint8 public decimals = 18; - - uint256 public override totalSupply; - bool public inPrivateTransferMode; - - mapping(address => uint256) public balances; - mapping(address => mapping(address => uint256)) public allowances; - mapping(address => bool) public nonStakingAccounts; - mapping(address => bool) public admins; - - mapping(address => bool) public override isMinter; - - mapping(address => bool) public isHandler; - - constructor(string memory _name, string memory _symbol) { - name = _name; - symbol = _symbol; - } - - modifier onlyMinter() { - require(isMinter[msg.sender], "EsToken: forbidden"); - _; - } - - modifier onlyAdmin() { - require(admins[msg.sender], "BaseToken: forbidden"); - _; - } - - function setMinter(address _minter, bool _isActive) external override onlyGov { - isMinter[_minter] = _isActive; - } - - function addAdmin(address _account) external onlyGov { - admins[_account] = true; - } - - function removeAdmin(address _account) external onlyGov { - admins[_account] = false; - } - - function mint(address _account, uint256 _amount) external override onlyMinter { - _mint(_account, _amount); - } - - function burn(address _account, uint256 _amount) external override onlyMinter { - _burn(_account, _amount); - } - - function setInPrivateTransferMode(bool _inPrivateTransferMode) external onlyGov { - inPrivateTransferMode = _inPrivateTransferMode; - } - - function setHandler(address _handler, bool _isActive) external onlyGov { - isHandler[_handler] = _isActive; - } - - function balanceOf(address _account) external view override returns (uint256) { - return balances[_account]; - } - - function stakedBalance(address _account) external view returns (uint256) { - if (nonStakingAccounts[_account]) { - return 0; - } - return balances[_account]; - } - - function transfer(address _recipient, uint256 _amount) external override returns (bool) { - _transfer(msg.sender, _recipient, _amount); - return true; - } - - function allowance(address _owner, address _spender) external view override returns (uint256) { - return allowances[_owner][_spender]; - } - - function approve(address _spender, uint256 _amount) external override returns (bool) { - _approve(msg.sender, _spender, _amount); - return true; - } - - function transferFrom(address _sender, address _recipient, uint256 _amount) external override returns (bool) { - if (isHandler[msg.sender]) { - _transfer(_sender, _recipient, _amount); - return true; - } - require(allowances[_sender][msg.sender] >= _amount, "EsToken: transfer amount exceeds allowance"); - uint256 nextAllowance = allowances[_sender][msg.sender] - _amount; - _approve(_sender, msg.sender, nextAllowance); - _transfer(_sender, _recipient, _amount); - return true; - } - - function _mint(address _account, uint256 _amount) internal { - require(_account != address(0), "EsToken: mint to the zero address"); - - totalSupply = totalSupply + _amount; - balances[_account] = balances[_account] + _amount; - - emit Transfer(address(0), _account, _amount); - } - - function _burn(address _account, uint256 _amount) internal { - require(_account != address(0), "EsToken: burn from the zero address"); - - require(balances[_account] >= _amount, "EsToken: burn amount exceeds balance"); - balances[_account] = balances[_account] - _amount; - totalSupply = totalSupply - _amount; - - emit Transfer(_account, address(0), _amount); - } - - function _transfer(address _sender, address _recipient, uint256 _amount) private { - require(_sender != address(0), "EsToken: transfer from the zero address"); - require(_recipient != address(0), "EsToken: transfer to the zero address"); - - if (inPrivateTransferMode) { - require(isHandler[msg.sender], "EsToken: msg.sender not whitelisted"); - } - - require(balances[_sender] >= _amount, "EsToken: transfer amount exceeds balance"); - balances[_sender] = balances[_sender] - _amount; - balances[_recipient] = balances[_recipient] + _amount; - - emit Transfer(_sender, _recipient, _amount); - } - - function _approve(address _owner, address _spender, uint256 _amount) private { - require(_owner != address(0), "EsToken: approve from the zero address"); - require(_spender != address(0), "EsToken: approve to the zero address"); - - allowances[_owner][_spender] = _amount; - - emit Approval(_owner, _spender, _amount); - } -} diff --git a/deployments/bsc_test/CECDistributor.json b/deployments/bsc_test/CECDistributor.json index 89c9696..ffb6b35 100644 --- a/deployments/bsc_test/CECDistributor.json +++ b/deployments/bsc_test/CECDistributor.json @@ -1,5 +1,5 @@ { - "address": "0xee15c5efFBB66Ca27ff979f03Ad0eddA84407b66", + "address": "0x19E3F7E52AbbEED5A0A0e3e2F8892F4dd1079239", "abi": [ { "inputs": [ @@ -13,49 +13,15 @@ "name": "_cecToken", "type": "address" }, - { - "internalType": "address", - "name": "_wallet", - "type": "address" - }, { "internalType": "uint256", - "name": "_lockDuration", - "type": "uint256" - }, - { - "internalType": "uint256", - "name": "_releaseAllMonth", - "type": "uint256" - }, - { - "internalType": "uint256", - "name": "_tgeRatio", + "name": "_start", "type": "uint256" } ], "stateMutability": "nonpayable", "type": "constructor" }, - { - "anonymous": false, - "inputs": [ - { - "indexed": true, - "internalType": "address", - "name": "account", - "type": "address" - }, - { - "indexed": false, - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "name": "EventBalanceUpdated", - "type": "event" - }, { "anonymous": false, "inputs": [ @@ -100,6 +66,47 @@ "name": "EventChangeAddress", "type": "event" }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "internalType": "address", + "name": "account", + "type": "address" + }, + { + "components": [ + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "releaseAllMonth", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "tgeRatio", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "lockDuration", + "type": "uint256" + } + ], + "indexed": false, + "internalType": "struct CECDistributor.ReleaseInfo", + "name": "info", + "type": "tuple" + } + ], + "name": "EventInfoUpdated", + "type": "event" + }, { "anonymous": false, "inputs": [ @@ -171,25 +178,6 @@ "stateMutability": "view", "type": "function" }, - { - "inputs": [ - { - "internalType": "address", - "name": "account", - "type": "address" - } - ], - "name": "balanceMap", - "outputs": [ - { - "internalType": "uint256", - "name": "amount", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, { "inputs": [ { @@ -272,6 +260,40 @@ "stateMutability": "view", "type": "function" }, + { + "inputs": [ + { + "internalType": "address", + "name": "account", + "type": "address" + } + ], + "name": "infoMap", + "outputs": [ + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "releaseAllMonth", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "tgeRatio", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "lockDuration", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, { "inputs": [], "name": "lockDuration", @@ -339,7 +361,7 @@ "type": "address" } ], - "name": "releaseMap", + "name": "releasedMap", "outputs": [ { "internalType": "uint256", @@ -370,19 +392,6 @@ "stateMutability": "nonpayable", "type": "function" }, - { - "inputs": [ - { - "internalType": "uint256", - "name": "newStart", - "type": "uint256" - } - ], - "name": "setStart", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, { "inputs": [], "name": "start", @@ -396,19 +405,6 @@ "stateMutability": "view", "type": "function" }, - { - "inputs": [], - "name": "tgeRatio", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, { "inputs": [ { @@ -437,46 +433,73 @@ "type": "address[]" }, { - "internalType": "uint256[]", - "name": "amounts", - "type": "uint256[]" + "components": [ + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "releaseAllMonth", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "tgeRatio", + "type": "uint256" + }, + { + "internalType": "uint256", + "name": "lockDuration", + "type": "uint256" + } + ], + "internalType": "struct CECDistributor.ReleaseInfo[]", + "name": "infos", + "type": "tuple[]" } ], - "name": "updateBalances", + "name": "updateInfo", "outputs": [], "stateMutability": "nonpayable", "type": "function" }, { - "inputs": [], - "name": "wallet", - "outputs": [ + "inputs": [ { "internalType": "address", - "name": "", + "name": "to", "type": "address" + }, + { + "internalType": "uint256", + "name": "amount", + "type": "uint256" } ], - "stateMutability": "view", + "name": "withdrawToken", + "outputs": [], + "stateMutability": "nonpayable", "type": "function" } ], - "transactionHash": "0x19ec5b1787b6cfd3252118ca0fee4355165892e49d3b14f1136192a68efc88da", + "transactionHash": "0x78c13371c68e6c1a033911fac9012c8e1b640b7e4736bdefae78f326fffba17b", "receipt": { "to": null, "from": "0x50A8e60041A206AcaA5F844a1104896224be6F39", - "contractAddress": "0xee15c5efFBB66Ca27ff979f03Ad0eddA84407b66", + "contractAddress": "0x19E3F7E52AbbEED5A0A0e3e2F8892F4dd1079239", "transactionIndex": 0, - "gasUsed": "1333409", - "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000021000000000000000000000000000000010000020000000000000000000800000000000000000000000000000000400000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000020000000000000000000000000000000000000020000000000000000000000000000", - "blockHash": "0x29d8a5cefb823677c6c710f311a30f10abf9d0e3af7a3b722c65e5dac032340d", - "transactionHash": "0x19ec5b1787b6cfd3252118ca0fee4355165892e49d3b14f1136192a68efc88da", + "gasUsed": "1209864", + "logsBloom": "0x00000000000000000000000000000000000000000000000000800000000801000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000020000000000000000000800000002000000000000000000000000400000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000020000000000000000000000000000000000000020000000000000000000000000000", + "blockHash": "0x7bec83e7f1f55a59ed391204ae72d46a5be34526dc9b51b68a4e8746029f9139", + "transactionHash": "0x78c13371c68e6c1a033911fac9012c8e1b640b7e4736bdefae78f326fffba17b", "logs": [ { "transactionIndex": 0, - "blockNumber": 43666232, - "transactionHash": "0x19ec5b1787b6cfd3252118ca0fee4355165892e49d3b14f1136192a68efc88da", - "address": "0xee15c5efFBB66Ca27ff979f03Ad0eddA84407b66", + "blockNumber": 43680307, + "transactionHash": "0x78c13371c68e6c1a033911fac9012c8e1b640b7e4736bdefae78f326fffba17b", + "address": "0x19E3F7E52AbbEED5A0A0e3e2F8892F4dd1079239", "topics": [ "0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0", "0x0000000000000000000000000000000000000000000000000000000000000000", @@ -484,27 +507,24 @@ ], "data": "0x", "logIndex": 0, - "blockHash": "0x29d8a5cefb823677c6c710f311a30f10abf9d0e3af7a3b722c65e5dac032340d" + "blockHash": "0x7bec83e7f1f55a59ed391204ae72d46a5be34526dc9b51b68a4e8746029f9139" } ], - "blockNumber": 43666232, - "cumulativeGasUsed": "1333409", + "blockNumber": 43680307, + "cumulativeGasUsed": "1209864", "status": 1, "byzantium": true }, "args": [ "first", "0xe34c5ea0c3083d11a735dc0609533b92130319f5", - "0x50A8e60041A206AcaA5F844a1104896224be6F39", - 259200, - 10, - 300000 + 1725765122 ], "numDeployments": 1, - "solcInputHash": "51ba64eae03e4e6310445724f0bd32d5", - "metadata": "{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"address\",\"name\":\"_cecToken\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"_wallet\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_lockDuration\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_releaseAllMonth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"_tgeRatio\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"EventBalanceUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"EventCECClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"oldAddr\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAddr\",\"type\":\"address\"}],\"name\":\"EventChangeAddress\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DURATION\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"TGE_PRECISION\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"balanceMap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"calcClaimAmount\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cecToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"changeAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"claim\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"gov\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lockDuration\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"releaseMap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_gov\",\"type\":\"address\"}],\"name\":\"setGov\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"newStart\",\"type\":\"uint256\"}],\"name\":\"setStart\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"start\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"tgeRatio\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unpause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"accounts\",\"type\":\"address[]\"},{\"internalType\":\"uint256[]\",\"name\":\"amounts\",\"type\":\"uint256[]\"}],\"name\":\"updateBalances\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"wallet\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"CECDistributor is a contract for distributing CEC token with unlock time after all data is set, transfer owner to timelock contract\",\"events\":{\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"pause()\":{\"details\":\"update pause state When encountering special circumstances that require an emergency pause of the contract, the pause function can be called by the gov account to quickly pause the contract and minimize losses.\"},\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"},\"unpause()\":{\"details\":\"update unpause state\"}},\"title\":\"CECDistributor\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/activity/CECDistributor.sol\":\"CECDistributor\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/Context.sol\\\";\\n\\n/**\\n * @dev Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner account will be the one that deploys the contract. This\\n * can later be changed with {transferOwnership}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable is Context {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n constructor() {\\n _transferOwnership(_msgSender());\\n }\\n\\n /**\\n * @dev Throws if called by any account other than the owner.\\n */\\n modifier onlyOwner() {\\n _checkOwner();\\n _;\\n }\\n\\n /**\\n * @dev Returns the address of the current owner.\\n */\\n function owner() public view virtual returns (address) {\\n return _owner;\\n }\\n\\n /**\\n * @dev Throws if the sender is not the owner.\\n */\\n function _checkOwner() internal view virtual {\\n require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\n }\\n\\n /**\\n * @dev Leaves the contract without owner. It will not be possible to call\\n * `onlyOwner` functions. Can only be called by the current owner.\\n *\\n * NOTE: Renouncing ownership will leave the contract without an owner,\\n * thereby disabling any functionality that is only available to the owner.\\n */\\n function renounceOwnership() public virtual onlyOwner {\\n _transferOwnership(address(0));\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual onlyOwner {\\n require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\n _transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual {\\n address oldOwner = _owner;\\n _owner = newOwner;\\n emit OwnershipTransferred(oldOwner, newOwner);\\n }\\n}\\n\",\"keccak256\":\"0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218\",\"license\":\"MIT\"},\"@openzeppelin/contracts/security/Pausable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/Context.sol\\\";\\n\\n/**\\n * @dev Contract module which allows children to implement an emergency stop\\n * mechanism that can be triggered by an authorized account.\\n *\\n * This module is used through inheritance. It will make available the\\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\\n * the functions of your contract. Note that they will not be pausable by\\n * simply including this module, only once the modifiers are put in place.\\n */\\nabstract contract Pausable is Context {\\n /**\\n * @dev Emitted when the pause is triggered by `account`.\\n */\\n event Paused(address account);\\n\\n /**\\n * @dev Emitted when the pause is lifted by `account`.\\n */\\n event Unpaused(address account);\\n\\n bool private _paused;\\n\\n /**\\n * @dev Initializes the contract in unpaused state.\\n */\\n constructor() {\\n _paused = false;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is not paused.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n modifier whenNotPaused() {\\n _requireNotPaused();\\n _;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is paused.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n modifier whenPaused() {\\n _requirePaused();\\n _;\\n }\\n\\n /**\\n * @dev Returns true if the contract is paused, and false otherwise.\\n */\\n function paused() public view virtual returns (bool) {\\n return _paused;\\n }\\n\\n /**\\n * @dev Throws if the contract is paused.\\n */\\n function _requireNotPaused() internal view virtual {\\n require(!paused(), \\\"Pausable: paused\\\");\\n }\\n\\n /**\\n * @dev Throws if the contract is not paused.\\n */\\n function _requirePaused() internal view virtual {\\n require(paused(), \\\"Pausable: not paused\\\");\\n }\\n\\n /**\\n * @dev Triggers stopped state.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n function _pause() internal virtual whenNotPaused {\\n _paused = true;\\n emit Paused(_msgSender());\\n }\\n\\n /**\\n * @dev Returns to normal state.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n function _unpause() internal virtual whenPaused {\\n _paused = false;\\n emit Unpaused(_msgSender());\\n }\\n}\\n\",\"keccak256\":\"0x0849d93b16c9940beb286a7864ed02724b248b93e0d80ef6355af5ef15c64773\",\"license\":\"MIT\"},\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Contract module that helps prevent reentrant calls to a function.\\n *\\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\\n * available, which can be applied to functions to make sure there are no nested\\n * (reentrant) calls to them.\\n *\\n * Note that because there is a single `nonReentrant` guard, functions marked as\\n * `nonReentrant` may not call one another. This can be worked around by making\\n * those functions `private`, and then adding `external` `nonReentrant` entry\\n * points to them.\\n *\\n * TIP: If you would like to learn more about reentrancy and alternative ways\\n * to protect against it, check out our blog post\\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\\n */\\nabstract contract ReentrancyGuard {\\n // Booleans are more expensive than uint256 or any type that takes up a full\\n // word because each write operation emits an extra SLOAD to first read the\\n // slot's contents, replace the bits taken up by the boolean, and then write\\n // back. This is the compiler's defense against contract upgrades and\\n // pointer aliasing, and it cannot be disabled.\\n\\n // The values being non-zero value makes deployment a bit more expensive,\\n // but in exchange the refund on every call to nonReentrant will be lower in\\n // amount. Since refunds are capped to a percentage of the total\\n // transaction's gas, it is best to keep them low in cases like this one, to\\n // increase the likelihood of the full refund coming into effect.\\n uint256 private constant _NOT_ENTERED = 1;\\n uint256 private constant _ENTERED = 2;\\n\\n uint256 private _status;\\n\\n constructor() {\\n _status = _NOT_ENTERED;\\n }\\n\\n /**\\n * @dev Prevents a contract from calling itself, directly or indirectly.\\n * Calling a `nonReentrant` function from another `nonReentrant`\\n * function is not supported. It is possible to prevent this from happening\\n * by making the `nonReentrant` function external, and making it call a\\n * `private` function that does the actual work.\\n */\\n modifier nonReentrant() {\\n _nonReentrantBefore();\\n _;\\n _nonReentrantAfter();\\n }\\n\\n function _nonReentrantBefore() private {\\n // On the first call to nonReentrant, _status will be _NOT_ENTERED\\n require(_status != _ENTERED, \\\"ReentrancyGuard: reentrant call\\\");\\n\\n // Any calls to nonReentrant after this point will fail\\n _status = _ENTERED;\\n }\\n\\n function _nonReentrantAfter() private {\\n // By storing the original value once again, a refund is triggered (see\\n // https://eips.ethereum.org/EIPS/eip-2200)\\n _status = _NOT_ENTERED;\\n }\\n\\n /**\\n * @dev Returns true if the reentrancy guard is currently set to \\\"entered\\\", which indicates there is a\\n * `nonReentrant` function in the call stack.\\n */\\n function _reentrancyGuardEntered() internal view returns (bool) {\\n return _status == _ENTERED;\\n }\\n}\\n\",\"keccak256\":\"0xa535a5df777d44e945dd24aa43a11e44b024140fc340ad0dfe42acf4002aade1\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n * another (`to`).\\n *\\n * Note that `value` may be zero.\\n */\\n event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n /**\\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n * a call to {approve}. `value` is the new allowance.\\n */\\n event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n /**\\n * @dev Returns the amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `to`.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transfer(address to, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n *\\n * ==== Security Considerations\\n *\\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\\n * generally recommended is:\\n *\\n * ```solidity\\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\\n * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\\n * doThing(..., value);\\n * }\\n *\\n * function doThing(..., uint256 value) public {\\n * token.safeTransferFrom(msg.sender, address(this), value);\\n * ...\\n * }\\n * ```\\n *\\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\\n * {SafeERC20-safeTransferFrom}).\\n *\\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\\n * contracts should have entry points that don't rely on permit.\\n */\\ninterface IERC20Permit {\\n /**\\n * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\\n * given ``owner``'s signed approval.\\n *\\n * IMPORTANT: The same issues {IERC20-approve} has related to transaction\\n * ordering also apply here.\\n *\\n * Emits an {Approval} event.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n * - `deadline` must be a timestamp in the future.\\n * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\\n * over the EIP712-formatted function arguments.\\n * - the signature must use ``owner``'s current nonce (see {nonces}).\\n *\\n * For more information on the signature format, see the\\n * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\\n * section].\\n *\\n * CAUTION: See Security Considerations above.\\n */\\n function permit(\\n address owner,\\n address spender,\\n uint256 value,\\n uint256 deadline,\\n uint8 v,\\n bytes32 r,\\n bytes32 s\\n ) external;\\n\\n /**\\n * @dev Returns the current nonce for `owner`. This value must be\\n * included whenever a signature is generated for {permit}.\\n *\\n * Every successful call to {permit} increases ``owner``'s nonce by one. This\\n * prevents a signature from being used multiple times.\\n */\\n function nonces(address owner) external view returns (uint256);\\n\\n /**\\n * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\\n */\\n // solhint-disable-next-line func-name-mixedcase\\n function DOMAIN_SEPARATOR() external view returns (bytes32);\\n}\\n\",\"keccak256\":\"0xb264c03a3442eb37a68ad620cefd1182766b58bee6cec40343480392d6b14d69\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../extensions/IERC20Permit.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n using Address for address;\\n\\n /**\\n * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful.\\n */\\n function safeTransfer(IERC20 token, address to, uint256 value) internal {\\n _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n }\\n\\n /**\\n * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\\n * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\\n */\\n function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {\\n _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n }\\n\\n /**\\n * @dev Deprecated. This function has issues similar to the ones found in\\n * {IERC20-approve}, and its usage is discouraged.\\n *\\n * Whenever possible, use {safeIncreaseAllowance} and\\n * {safeDecreaseAllowance} instead.\\n */\\n function safeApprove(IERC20 token, address spender, uint256 value) internal {\\n // safeApprove should only be called when setting an initial allowance,\\n // or when resetting it to zero. To increase and decrease it, use\\n // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n require(\\n (value == 0) || (token.allowance(address(this), spender) == 0),\\n \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n );\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n }\\n\\n /**\\n * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful.\\n */\\n function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {\\n uint256 oldAllowance = token.allowance(address(this), spender);\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));\\n }\\n\\n /**\\n * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful.\\n */\\n function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {\\n unchecked {\\n uint256 oldAllowance = token.allowance(address(this), spender);\\n require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));\\n }\\n }\\n\\n /**\\n * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\\n * to be set to zero before setting it to a non-zero value, such as USDT.\\n */\\n function forceApprove(IERC20 token, address spender, uint256 value) internal {\\n bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);\\n\\n if (!_callOptionalReturnBool(token, approvalCall)) {\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));\\n _callOptionalReturn(token, approvalCall);\\n }\\n }\\n\\n /**\\n * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.\\n * Revert on invalid signature.\\n */\\n function safePermit(\\n IERC20Permit token,\\n address owner,\\n address spender,\\n uint256 value,\\n uint256 deadline,\\n uint8 v,\\n bytes32 r,\\n bytes32 s\\n ) internal {\\n uint256 nonceBefore = token.nonces(owner);\\n token.permit(owner, spender, value, deadline, v, r, s);\\n uint256 nonceAfter = token.nonces(owner);\\n require(nonceAfter == nonceBefore + 1, \\\"SafeERC20: permit did not succeed\\\");\\n }\\n\\n /**\\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n * on the return value: the return value is optional (but if data is returned, it must not be false).\\n * @param token The token targeted by the call.\\n * @param data The call data (encoded using abi.encode or one of its variants).\\n */\\n function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that\\n // the target address contains contract code and also asserts for success in the low-level call.\\n\\n bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n require(returndata.length == 0 || abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n }\\n\\n /**\\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n * on the return value: the return value is optional (but if data is returned, it must not be false).\\n * @param token The token targeted by the call.\\n * @param data The call data (encoded using abi.encode or one of its variants).\\n *\\n * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.\\n */\\n function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {\\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false\\n // and not revert is the subcall reverts.\\n\\n (bool success, bytes memory returndata) = address(token).call(data);\\n return\\n success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));\\n }\\n}\\n\",\"keccak256\":\"0xabefac93435967b4d36a4fabcbdbb918d1f0b7ae3c3d85bc30923b326c927ed1\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n}\\n\",\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\"},\"contracts/activity/CECDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity 0.8.19;\\n\\nimport {ReentrancyGuard} from \\\"@openzeppelin/contracts/security/ReentrancyGuard.sol\\\";\\nimport {Pausable} from \\\"@openzeppelin/contracts/security/Pausable.sol\\\";\\nimport {IERC20} from \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport {SafeERC20} from \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport {Ownable} from \\\"@openzeppelin/contracts/access/Ownable.sol\\\";\\nimport {Governable} from \\\"../core/Governable.sol\\\";\\n\\n/**\\n * @title CECDistributor\\n * @dev CECDistributor is a contract for distributing CEC token with unlock time\\n * after all data is set, transfer owner to timelock contract\\n */\\ncontract CECDistributor is ReentrancyGuard, Pausable, Ownable, Governable {\\n using SafeERC20 for IERC20;\\n\\n mapping(address account => uint256 amount) public balanceMap;\\n mapping(address account => uint256 amount) public releaseMap;\\n\\n string public name;\\n IERC20 public immutable cecToken;\\n uint256 public constant DURATION = 86400 * 30;\\n uint256 private releaseAllMonth;\\n\\n uint256 public start = 0;\\n // release ratio when tge\\n uint256 public tgeRatio;\\n uint256 public constant TGE_PRECISION = 1000000;\\n //\\n uint256 public lockDuration;\\n address public wallet;\\n\\n event EventBalanceUpdated(address indexed account, uint256 amount);\\n event EventCECClaimed(address indexed user, address indexed to, uint256 amount);\\n event EventChangeAddress(address oldAddr, address newAddr);\\n\\n constructor(\\n string memory _name,\\n address _cecToken, \\n address _wallet, \\n uint256 _lockDuration, \\n uint256 _releaseAllMonth, \\n uint256 _tgeRatio\\n ) {\\n name = _name;\\n cecToken = IERC20(_cecToken);\\n wallet = _wallet;\\n lockDuration = _lockDuration;\\n releaseAllMonth = _releaseAllMonth;\\n tgeRatio = _tgeRatio;\\n }\\n\\n /**\\n * @dev Throws if called by any account other than the owner or gov.\\n */\\n modifier ownerOrGov() {\\n require(msg.sender == owner() || msg.sender == gov, \\\"CECDistributor: forbidden\\\");\\n _;\\n }\\n\\n function setGov(address _gov) external override onlyOwner {\\n gov = _gov;\\n }\\n /**\\n * @dev update pause state\\n * When encountering special circumstances that require an emergency pause of the contract,\\n * the pause function can be called by the gov account to quickly pause the contract and minimize losses.\\n */\\n function pause() external ownerOrGov {\\n _pause();\\n }\\n\\n /**\\n * @dev update unpause state\\n */\\n function unpause() external ownerOrGov {\\n _unpause();\\n }\\n\\n function setStart(uint256 newStart) external ownerOrGov {\\n require(newStart > 0 && start == 0, \\\"CECDistributor: it's already initialized\\\");\\n start = newStart;\\n }\\n\\n function updateBalances(address[] calldata accounts, uint256[] calldata amounts) external onlyOwner {\\n require(accounts.length == amounts.length, \\\"CECDistributor: invalid input\\\");\\n for (uint256 i = 0; i < accounts.length; i++) {\\n balanceMap[accounts[i]] = amounts[i];\\n emit EventBalanceUpdated(accounts[i], amounts[i]);\\n }\\n }\\n\\n function calcClaimAmount(address user) public view whenNotPaused returns (uint256) {\\n require(balanceMap[user] > 0, \\\"CECDistributor: not in whitelist\\\");\\n require(block.timestamp >= start, \\\"CECDistributor: not in claim time\\\");\\n uint256 claimAmount = 0;\\n uint256 tgeAmount = 0;\\n if (tgeRatio > 0) {\\n tgeAmount = ((balanceMap[user] * tgeRatio) / TGE_PRECISION);\\n claimAmount += tgeAmount;\\n }\\n if (block.timestamp > start + lockDuration) {\\n uint256 monthNum = (block.timestamp - start - lockDuration) / DURATION;\\n if (monthNum <= releaseAllMonth) {\\n claimAmount += (((balanceMap[user] - tgeAmount) * monthNum) / releaseAllMonth);\\n } else {\\n claimAmount = balanceMap[user];\\n }\\n }\\n claimAmount -= releaseMap[user];\\n return claimAmount;\\n }\\n\\n function claim(address to) external nonReentrant whenNotPaused returns (uint256) {\\n require(start > 0, \\\"CECDistributor: start isn't init\\\");\\n require(to != address(0), \\\"CECDistributor: invalid address\\\");\\n address _user = _msgSender();\\n uint256 amount = calcClaimAmount(_user);\\n if (amount > 0) {\\n releaseMap[_user] = amount;\\n cecToken.safeTransferFrom(wallet, to, amount);\\n emit EventCECClaimed(_user, to, amount);\\n }\\n return amount;\\n }\\n\\n function changeAddress(address from, address to) external {\\n require(balanceMap[to] == 0, \\\"CECDistributor: new addr is in whitelist\\\");\\n require(balanceMap[from] > 0, \\\"CECDistributor: not in whitelist\\\");\\n address _sender = _msgSender();\\n require(_sender == owner() || _sender == gov || _sender == from, \\\"CECDistributor: sender not allowed\\\");\\n balanceMap[to] = balanceMap[from];\\n balanceMap[from] = 0;\\n releaseMap[to] = releaseMap[from];\\n releaseMap[from] = 0;\\n emit EventChangeAddress(from, to);\\n }\\n}\\n\",\"keccak256\":\"0x58670927999f9e1f051c867f384c6fef16f9d71bccc8e1e6452a6e8147885933\",\"license\":\"MIT\"},\"contracts/core/Governable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity 0.8.19;\\n\\ncontract Governable {\\n address public gov;\\n\\n constructor() {\\n gov = msg.sender;\\n }\\n\\n modifier onlyGov() {\\n require(msg.sender == gov, \\\"Governable: forbidden\\\");\\n _;\\n }\\n\\n function setGov(address _gov) external virtual onlyGov {\\n gov = _gov;\\n }\\n}\\n\",\"keccak256\":\"0x41066d736cf570d77335785327703ad95a6634823ebec5543086aecdce7038fb\",\"license\":\"MIT\"}},\"version\":1}", - "bytecode": "0x60a060405234620002f357620016d0803803806200001d81620002f8565b92833981019060c081830312620002f35780516001600160401b039290838111620002f357820190601f818184011215620002f357825192858411620002c857602093601f19916200007584830184168701620002f8565b94828652868383010111620002f357859060005b838110620002de57505060009185010152620000a78486016200031e565b90620000b6604087016200031e565b9160608701519560a0608089015198015198600180600055805496610100600160a81b033360081b1660018060a81b0319891617825560018060a01b039788339160081c167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a360018060a01b031998338a600254161760025560006007558051938411620002c8576005948554978489811c99168015620002bd575b828a1014620002a75788848c9a1162000247575b5081938611600114620001dd575050918392918392600094620001d1575b50501b916000199060031b1c19161790555b166080521690600a541617600a5560095560065560085560405161139c90816200033482396080518181816104660152610b620152f35b01519250388062000188565b85949593929193168660005283600020936000905b8282106200022c575050841162000212575b505050811b0190556200019a565b015160001960f88460031b161c1916905538808062000204565b8385015186558c9a50948701949384019390810190620001f2565b909192939495968098995060005282600020858089018a1c820192858a106200029d575b968d9b9a9998979695949392919601891c01905b8181106200028e57506200016a565b600081558c9a5086016200027f565b925081926200026b565b634e487b7160e01b600052602260045260246000fd5b98607f169862000156565b634e487b7160e01b600052604160045260246000fd5b81810183015187820184015287920162000089565b600080fd5b6040519190601f01601f191682016001600160401b03811183821017620002c857604052565b51906001600160a01b0382168203620002f35756fe6080604081815260048036101561001557600080fd5b600092833560e01c90816304554443146110155750806306fdde0314610f1357806312d43a5114610eea57806316e6099114610ecb5780631be0528914610ead5780631e83409a14610a505780633f4ba83a146109a45780634135894314610853578063521eb2731461082a5780635c975abb1461080657806365813ac0146107d1578063715018a6146107705780637b488726146107525780638456cb59146106e25780638da5cb5b146106b5578063a2befa6414610534578063be9a655514610515578063cfad57a2146104cd578063d250496c14610495578063edd47d9414610451578063efe08a7d146102b4578063f2fde38b146101dc5763f6a03ebf1461012057600080fd5b346101d85760203660031901126101d85780359161015660018060a01b038060015460081c1633149081156101ca575b50611159565b821515806101c0575b1561016c57505060075580f35b906020608492519162461bcd60e51b8352820152602860248201527f4345434469737472696275746f723a206974277320616c726561647920696e696044820152671d1a585b1a5e995960c21b6064820152fd5b506007541561015f565b905060025416331438610150565b8280fd5b50346101d85760203660031901126101d8576101f66110b2565b6101fe6110fe565b6001600160a01b0381811693909290841561026257505060018054610100600160a81b03198116600893841b610100600160a81b031617909155901c167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b5091903461044d578060031936011261044d576102cf6110b2565b926001600160a01b039060243582811691908290036104495781855260209560038752848620546103f55783169283865260038752610312858720541515611223565b8060015460081c1633149081156103e7575b5080156103de575b1561039057948495837f779af3947d5b0ad2ecc0e40a25f1a2fc6ff98ef2ae950542a554bcfa5dd21ace965260038252848720548388528588205583875286858120558152838620548287528487205582865285848120558351928352820152a180f35b835162461bcd60e51b8152908101869052602260248201527f4345434469737472696275746f723a2073656e646572206e6f7420616c6c6f77604482015261195960f21b6064820152608490fd5b5082331461032c565b905060025416331438610324565b845162461bcd60e51b8152808301889052602860248201527f4345434469737472696275746f723a206e6577206164647220697320696e20776044820152671a1a5d195b1a5cdd60c21b6064820152608490fd5b8480fd5b5080fd5b50503461044d578160031936011261044d57517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b50503461044d57602036600319011261044d5760209181906001600160a01b036104bd6110b2565b1681526003845220549051908152f35b8334610512576020366003190112610512576104e76110b2565b6104ef6110fe565b60018060a01b03166bffffffffffffffffffffffff60a01b600254161760025580f35b80fd5b50503461044d578160031936011261044d576020906007549051908152f35b50346101d85760209283600319360112610512576105506110b2565b6105586111a5565b6001600160a01b0316808252600385528382205490929061057a901515611223565b60075492834210610668579184916105c19493829488849160085480610640575b50600954906105aa82826112b7565b42116105c8575b50505050825286522054906112c4565b9051908152f35b62278d00916105de6105e3929a95969a426112c4565b6112c4565b6006549190049381851161062a5761061f9461060f610614926003610619968d8c52528a8a20546112c4565b61126e565b611297565b906112b7565b935b388881806105b1565b5050505050838252600387528282205493610621565b909750620f4240925061065e915083865260038b528686205461126e565b048881963861059b565b845162461bcd60e51b8152808301879052602160248201527f4345434469737472696275746f723a206e6f7420696e20636c61696d2074696d6044820152606560f81b6064820152608490fd5b50503461044d578160031936011261044d57600154905160089190911c6001600160a01b03168152602090f35b50503461044d578160031936011261044d5760207f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258916001805461073a828060a01b03808360081c1633149081156101ca5750611159565b6107426111a5565b60ff19161760015551338152a180f35b50503461044d578160031936011261044d5760209051620f42408152f35b83346105125780600319360112610512576107896110fe565b60018054610100600160a81b03198116909155819060081c6001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b50346101d85760203660031901126101d85760209282916001600160a01b036107f86110b2565b168252845220549051908152f35b50503461044d578160031936011261044d5760209060ff6001541690519015158152f35b50503461044d578160031936011261044d57600a5490516001600160a01b039091168152602090f35b5090346101d857806003193601126101d85767ffffffffffffffff9180358381116104495761088590369083016110cd565b60249391939485359081116109a0576108a190369085016110cd565b90916108ab6110fe565b81810361095e57875b8181106108bf578880f35b817f1be57ac6ec437af1e6ef47c469aa7797bbbe213d9662f557ec6a5d4794d6948b6108ec8386886111e9565b35896109096109048660018060a01b039687946111e9565b61120f565b168c5260209060038252888d205561092561090485878d6111e9565b9261093185888a6111e9565b359389519485521692a2600019811461094c576001016108b4565b634e487b7160e01b8952601186528789fd5b835162461bcd60e51b8152602081870152601d818901527f4345434469737472696275746f723a20696e76616c696420696e7075740000006044820152606490fd5b8680fd5b50346101d857826003193601126101d857600154906109d860018060a01b03808460081c1633149081156101ca5750611159565b60ff821615610a16575060ff1916600155513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a180f35b606490602084519162461bcd60e51b8352820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152fd5b5090346101d8576020928360031936011261051257610a6d6110b2565b926002825414610e6a5760028255610a836111a5565b600754908115610e29576001600160a01b03948516918215610de657610aa76111a5565b33845260038752610abc858520541515611223565b804210610d995783849160085480610d73575b5060095490610ade82826112b7565b4211610d0f575b5050610afc915033855282885285852054906112c4565b9485610b10575b5050506001905551908152f35b338452818752858585205580600a5416908551888101926323b872dd60e01b845260248201528460448201528760648201526064815260a081019267ffffffffffffffff9282851084861117610cfc577f0000000000000000000000000000000000000000000000000000000000000000169160e0810185811085821117610ce95789528a85527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656460c082015251879182919082855af1903d15610cda573d928311610cc75790610c00939291885192610bf38c601f19601f8401160185611031565b83523d888c85013e6112d1565b8051878115918215610ca3575b5050905015610c4d57509060019183518581527fbf6cfe5f315586d4e47336a40b5e3d3313fd55af8075c5d2eadf8e7723119412873392a3903880610b03565b835162461bcd60e51b8152908101869052602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608490fd5b8380929350010312610cc3578601518015158103610cc357808738610c0d565b8380fd5b634e487b7160e01b875260418552602487fd5b90610c009392506060916112d1565b634e487b7160e01b895260418752602489fd5b634e487b7160e01b885260418652602488fd5b62278d00916105de610d2192426112c4565b04908860065480841115600014610d5b57610614610d549461060f610afc976003610619968d339052528c8c20546112c4565b3880610ae5565b505050505033835260038652610afc84842054610d54565b610d8f919350620f4240925033875260038a528787205461126e565b0490819038610acf565b845162461bcd60e51b8152808301889052602160248201527f4345434469737472696275746f723a206e6f7420696e20636c61696d2074696d6044820152606560f81b6064820152608490fd5b845162461bcd60e51b8152808301889052601f60248201527f4345434469737472696275746f723a20696e76616c69642061646472657373006044820152606490fd5b606490868086519262461bcd60e51b845283015260248201527f4345434469737472696275746f723a2073746172742069736e277420696e69746044820152fd5b825162461bcd60e51b8152908101859052601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b50503461044d578160031936011261044d576020905162278d008152f35b50503461044d578160031936011261044d576020906008549051908152f35b50503461044d578160031936011261044d5760025490516001600160a01b039091168152602090f35b5090346101d857826003193601126101d857805191836005549060019082821c92828116801561100b575b6020958686108214610ff85750848852908115610fd65750600114610f7d575b610f798686610f6f828b0383611031565b5191829182611069565b0390f35b929550600583527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b828410610fc35750505082610f7994610f6f928201019438610f5e565b8054868501880152928601928101610fa6565b60ff191687860152505050151560051b8301019250610f6f82610f7938610f5e565b634e487b7160e01b845260229052602483fd5b93607f1693610f3e565b84903461044d578160031936011261044d576020906009548152f35b90601f8019910116810190811067ffffffffffffffff82111761105357604052565b634e487b7160e01b600052604160045260246000fd5b6020808252825181830181905290939260005b82811061109e57505060409293506000838284010152601f8019910116010190565b81810186015184820160400152850161107c565b600435906001600160a01b03821682036110c857565b600080fd5b9181601f840112156110c85782359167ffffffffffffffff83116110c8576020808501948460051b0101116110c857565b60015460081c6001600160a01b0316330361111557565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b1561116057565b60405162461bcd60e51b815260206004820152601960248201527f4345434469737472696275746f723a20666f7262696464656e000000000000006044820152606490fd5b60ff600154166111b157565b60405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606490fd5b91908110156111f95760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b03811681036110c85790565b1561122a57565b606460405162461bcd60e51b815260206004820152602060248201527f4345434469737472696275746f723a206e6f7420696e2077686974656c6973746044820152fd5b8181029291811591840414171561128157565b634e487b7160e01b600052601160045260246000fd5b81156112a1570490565b634e487b7160e01b600052601260045260246000fd5b9190820180921161128157565b9190820391821161128157565b9192901561133357508151156112e5575090565b3b156112ee5790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b8251909150156113465750805190602001fd5b60405162461bcd60e51b81529081906113629060048301611069565b0390fdfea2646970667358221220cb0ac939e57f13e6127142af1503b1550bc0a76bac47ab35d1ba10878cdf232964736f6c63430008130033", - "deployedBytecode": "0x6080604081815260048036101561001557600080fd5b600092833560e01c90816304554443146110155750806306fdde0314610f1357806312d43a5114610eea57806316e6099114610ecb5780631be0528914610ead5780631e83409a14610a505780633f4ba83a146109a45780634135894314610853578063521eb2731461082a5780635c975abb1461080657806365813ac0146107d1578063715018a6146107705780637b488726146107525780638456cb59146106e25780638da5cb5b146106b5578063a2befa6414610534578063be9a655514610515578063cfad57a2146104cd578063d250496c14610495578063edd47d9414610451578063efe08a7d146102b4578063f2fde38b146101dc5763f6a03ebf1461012057600080fd5b346101d85760203660031901126101d85780359161015660018060a01b038060015460081c1633149081156101ca575b50611159565b821515806101c0575b1561016c57505060075580f35b906020608492519162461bcd60e51b8352820152602860248201527f4345434469737472696275746f723a206974277320616c726561647920696e696044820152671d1a585b1a5e995960c21b6064820152fd5b506007541561015f565b905060025416331438610150565b8280fd5b50346101d85760203660031901126101d8576101f66110b2565b6101fe6110fe565b6001600160a01b0381811693909290841561026257505060018054610100600160a81b03198116600893841b610100600160a81b031617909155901c167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b5091903461044d578060031936011261044d576102cf6110b2565b926001600160a01b039060243582811691908290036104495781855260209560038752848620546103f55783169283865260038752610312858720541515611223565b8060015460081c1633149081156103e7575b5080156103de575b1561039057948495837f779af3947d5b0ad2ecc0e40a25f1a2fc6ff98ef2ae950542a554bcfa5dd21ace965260038252848720548388528588205583875286858120558152838620548287528487205582865285848120558351928352820152a180f35b835162461bcd60e51b8152908101869052602260248201527f4345434469737472696275746f723a2073656e646572206e6f7420616c6c6f77604482015261195960f21b6064820152608490fd5b5082331461032c565b905060025416331438610324565b845162461bcd60e51b8152808301889052602860248201527f4345434469737472696275746f723a206e6577206164647220697320696e20776044820152671a1a5d195b1a5cdd60c21b6064820152608490fd5b8480fd5b5080fd5b50503461044d578160031936011261044d57517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b50503461044d57602036600319011261044d5760209181906001600160a01b036104bd6110b2565b1681526003845220549051908152f35b8334610512576020366003190112610512576104e76110b2565b6104ef6110fe565b60018060a01b03166bffffffffffffffffffffffff60a01b600254161760025580f35b80fd5b50503461044d578160031936011261044d576020906007549051908152f35b50346101d85760209283600319360112610512576105506110b2565b6105586111a5565b6001600160a01b0316808252600385528382205490929061057a901515611223565b60075492834210610668579184916105c19493829488849160085480610640575b50600954906105aa82826112b7565b42116105c8575b50505050825286522054906112c4565b9051908152f35b62278d00916105de6105e3929a95969a426112c4565b6112c4565b6006549190049381851161062a5761061f9461060f610614926003610619968d8c52528a8a20546112c4565b61126e565b611297565b906112b7565b935b388881806105b1565b5050505050838252600387528282205493610621565b909750620f4240925061065e915083865260038b528686205461126e565b048881963861059b565b845162461bcd60e51b8152808301879052602160248201527f4345434469737472696275746f723a206e6f7420696e20636c61696d2074696d6044820152606560f81b6064820152608490fd5b50503461044d578160031936011261044d57600154905160089190911c6001600160a01b03168152602090f35b50503461044d578160031936011261044d5760207f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258916001805461073a828060a01b03808360081c1633149081156101ca5750611159565b6107426111a5565b60ff19161760015551338152a180f35b50503461044d578160031936011261044d5760209051620f42408152f35b83346105125780600319360112610512576107896110fe565b60018054610100600160a81b03198116909155819060081c6001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b50346101d85760203660031901126101d85760209282916001600160a01b036107f86110b2565b168252845220549051908152f35b50503461044d578160031936011261044d5760209060ff6001541690519015158152f35b50503461044d578160031936011261044d57600a5490516001600160a01b039091168152602090f35b5090346101d857806003193601126101d85767ffffffffffffffff9180358381116104495761088590369083016110cd565b60249391939485359081116109a0576108a190369085016110cd565b90916108ab6110fe565b81810361095e57875b8181106108bf578880f35b817f1be57ac6ec437af1e6ef47c469aa7797bbbe213d9662f557ec6a5d4794d6948b6108ec8386886111e9565b35896109096109048660018060a01b039687946111e9565b61120f565b168c5260209060038252888d205561092561090485878d6111e9565b9261093185888a6111e9565b359389519485521692a2600019811461094c576001016108b4565b634e487b7160e01b8952601186528789fd5b835162461bcd60e51b8152602081870152601d818901527f4345434469737472696275746f723a20696e76616c696420696e7075740000006044820152606490fd5b8680fd5b50346101d857826003193601126101d857600154906109d860018060a01b03808460081c1633149081156101ca5750611159565b60ff821615610a16575060ff1916600155513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a180f35b606490602084519162461bcd60e51b8352820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152fd5b5090346101d8576020928360031936011261051257610a6d6110b2565b926002825414610e6a5760028255610a836111a5565b600754908115610e29576001600160a01b03948516918215610de657610aa76111a5565b33845260038752610abc858520541515611223565b804210610d995783849160085480610d73575b5060095490610ade82826112b7565b4211610d0f575b5050610afc915033855282885285852054906112c4565b9485610b10575b5050506001905551908152f35b338452818752858585205580600a5416908551888101926323b872dd60e01b845260248201528460448201528760648201526064815260a081019267ffffffffffffffff9282851084861117610cfc577f0000000000000000000000000000000000000000000000000000000000000000169160e0810185811085821117610ce95789528a85527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656460c082015251879182919082855af1903d15610cda573d928311610cc75790610c00939291885192610bf38c601f19601f8401160185611031565b83523d888c85013e6112d1565b8051878115918215610ca3575b5050905015610c4d57509060019183518581527fbf6cfe5f315586d4e47336a40b5e3d3313fd55af8075c5d2eadf8e7723119412873392a3903880610b03565b835162461bcd60e51b8152908101869052602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608490fd5b8380929350010312610cc3578601518015158103610cc357808738610c0d565b8380fd5b634e487b7160e01b875260418552602487fd5b90610c009392506060916112d1565b634e487b7160e01b895260418752602489fd5b634e487b7160e01b885260418652602488fd5b62278d00916105de610d2192426112c4565b04908860065480841115600014610d5b57610614610d549461060f610afc976003610619968d339052528c8c20546112c4565b3880610ae5565b505050505033835260038652610afc84842054610d54565b610d8f919350620f4240925033875260038a528787205461126e565b0490819038610acf565b845162461bcd60e51b8152808301889052602160248201527f4345434469737472696275746f723a206e6f7420696e20636c61696d2074696d6044820152606560f81b6064820152608490fd5b845162461bcd60e51b8152808301889052601f60248201527f4345434469737472696275746f723a20696e76616c69642061646472657373006044820152606490fd5b606490868086519262461bcd60e51b845283015260248201527f4345434469737472696275746f723a2073746172742069736e277420696e69746044820152fd5b825162461bcd60e51b8152908101859052601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b50503461044d578160031936011261044d576020905162278d008152f35b50503461044d578160031936011261044d576020906008549051908152f35b50503461044d578160031936011261044d5760025490516001600160a01b039091168152602090f35b5090346101d857826003193601126101d857805191836005549060019082821c92828116801561100b575b6020958686108214610ff85750848852908115610fd65750600114610f7d575b610f798686610f6f828b0383611031565b5191829182611069565b0390f35b929550600583527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b828410610fc35750505082610f7994610f6f928201019438610f5e565b8054868501880152928601928101610fa6565b60ff191687860152505050151560051b8301019250610f6f82610f7938610f5e565b634e487b7160e01b845260229052602483fd5b93607f1693610f3e565b84903461044d578160031936011261044d576020906009548152f35b90601f8019910116810190811067ffffffffffffffff82111761105357604052565b634e487b7160e01b600052604160045260246000fd5b6020808252825181830181905290939260005b82811061109e57505060409293506000838284010152601f8019910116010190565b81810186015184820160400152850161107c565b600435906001600160a01b03821682036110c857565b600080fd5b9181601f840112156110c85782359167ffffffffffffffff83116110c8576020808501948460051b0101116110c857565b60015460081c6001600160a01b0316330361111557565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b1561116057565b60405162461bcd60e51b815260206004820152601960248201527f4345434469737472696275746f723a20666f7262696464656e000000000000006044820152606490fd5b60ff600154166111b157565b60405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606490fd5b91908110156111f95760051b0190565b634e487b7160e01b600052603260045260246000fd5b356001600160a01b03811681036110c85790565b1561122a57565b606460405162461bcd60e51b815260206004820152602060248201527f4345434469737472696275746f723a206e6f7420696e2077686974656c6973746044820152fd5b8181029291811591840414171561128157565b634e487b7160e01b600052601160045260246000fd5b81156112a1570490565b634e487b7160e01b600052601260045260246000fd5b9190820180921161128157565b9190820391821161128157565b9192901561133357508151156112e5575090565b3b156112ee5790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b8251909150156113465750805190602001fd5b60405162461bcd60e51b81529081906113629060048301611069565b0390fdfea2646970667358221220cb0ac939e57f13e6127142af1503b1550bc0a76bac47ab35d1ba10878cdf232964736f6c63430008130033", + "solcInputHash": "d182e288a80dfac1af2ff3d65d72ce7e", + "metadata": "{\"compiler\":{\"version\":\"0.8.19+commit.7dd6d404\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"address\",\"name\":\"_cecToken\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_start\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"EventCECClaimed\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"oldAddr\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAddr\",\"type\":\"address\"}],\"name\":\"EventChangeAddress\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"releaseAllMonth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"tgeRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lockDuration\",\"type\":\"uint256\"}],\"indexed\":false,\"internalType\":\"struct CECDistributor.ReleaseInfo\",\"name\":\"info\",\"type\":\"tuple\"}],\"name\":\"EventInfoUpdated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DURATION\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"TGE_PRECISION\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"user\",\"type\":\"address\"}],\"name\":\"calcClaimAmount\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"cecToken\",\"outputs\":[{\"internalType\":\"contract IERC20\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"from\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"changeAddress\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"}],\"name\":\"claim\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"gov\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"infoMap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"releaseAllMonth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"tgeRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lockDuration\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"lockDuration\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"pause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"releasedMap\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_gov\",\"type\":\"address\"}],\"name\":\"setGov\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"start\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"unpause\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address[]\",\"name\":\"accounts\",\"type\":\"address[]\"},{\"components\":[{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"releaseAllMonth\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"tgeRatio\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"lockDuration\",\"type\":\"uint256\"}],\"internalType\":\"struct CECDistributor.ReleaseInfo[]\",\"name\":\"infos\",\"type\":\"tuple[]\"}],\"name\":\"updateInfo\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"}],\"name\":\"withdrawToken\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"CECDistributor is a contract for distributing CEC token with unlock time after all data is set, transfer owner to timelock contract\",\"events\":{\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"pause()\":{\"details\":\"update pause state When encountering special circumstances that require an emergency pause of the contract, the pause function can be called by the gov account to quickly pause the contract and minimize losses.\"},\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"},\"unpause()\":{\"details\":\"update unpause state\"}},\"title\":\"CECDistributor\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/activity/CECDistributor.sol\":\"CECDistributor\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\",\"useLiteralContent\":true},\"optimizer\":{\"enabled\":true,\"runs\":200},\"remappings\":[],\"viaIR\":true},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/Context.sol\\\";\\n\\n/**\\n * @dev Contract module which provides a basic access control mechanism, where\\n * there is an account (an owner) that can be granted exclusive access to\\n * specific functions.\\n *\\n * By default, the owner account will be the one that deploys the contract. This\\n * can later be changed with {transferOwnership}.\\n *\\n * This module is used through inheritance. It will make available the modifier\\n * `onlyOwner`, which can be applied to your functions to restrict their use to\\n * the owner.\\n */\\nabstract contract Ownable is Context {\\n address private _owner;\\n\\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\\n\\n /**\\n * @dev Initializes the contract setting the deployer as the initial owner.\\n */\\n constructor() {\\n _transferOwnership(_msgSender());\\n }\\n\\n /**\\n * @dev Throws if called by any account other than the owner.\\n */\\n modifier onlyOwner() {\\n _checkOwner();\\n _;\\n }\\n\\n /**\\n * @dev Returns the address of the current owner.\\n */\\n function owner() public view virtual returns (address) {\\n return _owner;\\n }\\n\\n /**\\n * @dev Throws if the sender is not the owner.\\n */\\n function _checkOwner() internal view virtual {\\n require(owner() == _msgSender(), \\\"Ownable: caller is not the owner\\\");\\n }\\n\\n /**\\n * @dev Leaves the contract without owner. It will not be possible to call\\n * `onlyOwner` functions. Can only be called by the current owner.\\n *\\n * NOTE: Renouncing ownership will leave the contract without an owner,\\n * thereby disabling any functionality that is only available to the owner.\\n */\\n function renounceOwnership() public virtual onlyOwner {\\n _transferOwnership(address(0));\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Can only be called by the current owner.\\n */\\n function transferOwnership(address newOwner) public virtual onlyOwner {\\n require(newOwner != address(0), \\\"Ownable: new owner is the zero address\\\");\\n _transferOwnership(newOwner);\\n }\\n\\n /**\\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\\n * Internal function without access restriction.\\n */\\n function _transferOwnership(address newOwner) internal virtual {\\n address oldOwner = _owner;\\n _owner = newOwner;\\n emit OwnershipTransferred(oldOwner, newOwner);\\n }\\n}\\n\",\"keccak256\":\"0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218\",\"license\":\"MIT\"},\"@openzeppelin/contracts/security/Pausable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../utils/Context.sol\\\";\\n\\n/**\\n * @dev Contract module which allows children to implement an emergency stop\\n * mechanism that can be triggered by an authorized account.\\n *\\n * This module is used through inheritance. It will make available the\\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\\n * the functions of your contract. Note that they will not be pausable by\\n * simply including this module, only once the modifiers are put in place.\\n */\\nabstract contract Pausable is Context {\\n /**\\n * @dev Emitted when the pause is triggered by `account`.\\n */\\n event Paused(address account);\\n\\n /**\\n * @dev Emitted when the pause is lifted by `account`.\\n */\\n event Unpaused(address account);\\n\\n bool private _paused;\\n\\n /**\\n * @dev Initializes the contract in unpaused state.\\n */\\n constructor() {\\n _paused = false;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is not paused.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n modifier whenNotPaused() {\\n _requireNotPaused();\\n _;\\n }\\n\\n /**\\n * @dev Modifier to make a function callable only when the contract is paused.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n modifier whenPaused() {\\n _requirePaused();\\n _;\\n }\\n\\n /**\\n * @dev Returns true if the contract is paused, and false otherwise.\\n */\\n function paused() public view virtual returns (bool) {\\n return _paused;\\n }\\n\\n /**\\n * @dev Throws if the contract is paused.\\n */\\n function _requireNotPaused() internal view virtual {\\n require(!paused(), \\\"Pausable: paused\\\");\\n }\\n\\n /**\\n * @dev Throws if the contract is not paused.\\n */\\n function _requirePaused() internal view virtual {\\n require(paused(), \\\"Pausable: not paused\\\");\\n }\\n\\n /**\\n * @dev Triggers stopped state.\\n *\\n * Requirements:\\n *\\n * - The contract must not be paused.\\n */\\n function _pause() internal virtual whenNotPaused {\\n _paused = true;\\n emit Paused(_msgSender());\\n }\\n\\n /**\\n * @dev Returns to normal state.\\n *\\n * Requirements:\\n *\\n * - The contract must be paused.\\n */\\n function _unpause() internal virtual whenPaused {\\n _paused = false;\\n emit Unpaused(_msgSender());\\n }\\n}\\n\",\"keccak256\":\"0x0849d93b16c9940beb286a7864ed02724b248b93e0d80ef6355af5ef15c64773\",\"license\":\"MIT\"},\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Contract module that helps prevent reentrant calls to a function.\\n *\\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\\n * available, which can be applied to functions to make sure there are no nested\\n * (reentrant) calls to them.\\n *\\n * Note that because there is a single `nonReentrant` guard, functions marked as\\n * `nonReentrant` may not call one another. This can be worked around by making\\n * those functions `private`, and then adding `external` `nonReentrant` entry\\n * points to them.\\n *\\n * TIP: If you would like to learn more about reentrancy and alternative ways\\n * to protect against it, check out our blog post\\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\\n */\\nabstract contract ReentrancyGuard {\\n // Booleans are more expensive than uint256 or any type that takes up a full\\n // word because each write operation emits an extra SLOAD to first read the\\n // slot's contents, replace the bits taken up by the boolean, and then write\\n // back. This is the compiler's defense against contract upgrades and\\n // pointer aliasing, and it cannot be disabled.\\n\\n // The values being non-zero value makes deployment a bit more expensive,\\n // but in exchange the refund on every call to nonReentrant will be lower in\\n // amount. Since refunds are capped to a percentage of the total\\n // transaction's gas, it is best to keep them low in cases like this one, to\\n // increase the likelihood of the full refund coming into effect.\\n uint256 private constant _NOT_ENTERED = 1;\\n uint256 private constant _ENTERED = 2;\\n\\n uint256 private _status;\\n\\n constructor() {\\n _status = _NOT_ENTERED;\\n }\\n\\n /**\\n * @dev Prevents a contract from calling itself, directly or indirectly.\\n * Calling a `nonReentrant` function from another `nonReentrant`\\n * function is not supported. It is possible to prevent this from happening\\n * by making the `nonReentrant` function external, and making it call a\\n * `private` function that does the actual work.\\n */\\n modifier nonReentrant() {\\n _nonReentrantBefore();\\n _;\\n _nonReentrantAfter();\\n }\\n\\n function _nonReentrantBefore() private {\\n // On the first call to nonReentrant, _status will be _NOT_ENTERED\\n require(_status != _ENTERED, \\\"ReentrancyGuard: reentrant call\\\");\\n\\n // Any calls to nonReentrant after this point will fail\\n _status = _ENTERED;\\n }\\n\\n function _nonReentrantAfter() private {\\n // By storing the original value once again, a refund is triggered (see\\n // https://eips.ethereum.org/EIPS/eip-2200)\\n _status = _NOT_ENTERED;\\n }\\n\\n /**\\n * @dev Returns true if the reentrancy guard is currently set to \\\"entered\\\", which indicates there is a\\n * `nonReentrant` function in the call stack.\\n */\\n function _reentrancyGuardEntered() internal view returns (bool) {\\n return _status == _ENTERED;\\n }\\n}\\n\",\"keccak256\":\"0xa535a5df777d44e945dd24aa43a11e44b024140fc340ad0dfe42acf4002aade1\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 standard as defined in the EIP.\\n */\\ninterface IERC20 {\\n /**\\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\\n * another (`to`).\\n *\\n * Note that `value` may be zero.\\n */\\n event Transfer(address indexed from, address indexed to, uint256 value);\\n\\n /**\\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\\n * a call to {approve}. `value` is the new allowance.\\n */\\n event Approval(address indexed owner, address indexed spender, uint256 value);\\n\\n /**\\n * @dev Returns the amount of tokens in existence.\\n */\\n function totalSupply() external view returns (uint256);\\n\\n /**\\n * @dev Returns the amount of tokens owned by `account`.\\n */\\n function balanceOf(address account) external view returns (uint256);\\n\\n /**\\n * @dev Moves `amount` tokens from the caller's account to `to`.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transfer(address to, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Returns the remaining number of tokens that `spender` will be\\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\\n * zero by default.\\n *\\n * This value changes when {approve} or {transferFrom} are called.\\n */\\n function allowance(address owner, address spender) external view returns (uint256);\\n\\n /**\\n * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\\n * that someone may use both the old and the new allowance by unfortunate\\n * transaction ordering. One possible solution to mitigate this race\\n * condition is to first reduce the spender's allowance to 0 and set the\\n * desired value afterwards:\\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\\n *\\n * Emits an {Approval} event.\\n */\\n function approve(address spender, uint256 amount) external returns (bool);\\n\\n /**\\n * @dev Moves `amount` tokens from `from` to `to` using the\\n * allowance mechanism. `amount` is then deducted from the caller's\\n * allowance.\\n *\\n * Returns a boolean value indicating whether the operation succeeded.\\n *\\n * Emits a {Transfer} event.\\n */\\n function transferFrom(address from, address to, uint256 amount) external returns (bool);\\n}\\n\",\"keccak256\":\"0x287b55befed2961a7eabd7d7b1b2839cbca8a5b80ef8dcbb25ed3d4c2002c305\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (token/ERC20/extensions/IERC20Permit.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in\\n * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].\\n *\\n * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by\\n * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't\\n * need to send a transaction, and thus is not required to hold Ether at all.\\n *\\n * ==== Security Considerations\\n *\\n * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature\\n * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be\\n * considered as an intention to spend the allowance in any specific way. The second is that because permits have\\n * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should\\n * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be\\n * generally recommended is:\\n *\\n * ```solidity\\n * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {\\n * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}\\n * doThing(..., value);\\n * }\\n *\\n * function doThing(..., uint256 value) public {\\n * token.safeTransferFrom(msg.sender, address(this), value);\\n * ...\\n * }\\n * ```\\n *\\n * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of\\n * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also\\n * {SafeERC20-safeTransferFrom}).\\n *\\n * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so\\n * contracts should have entry points that don't rely on permit.\\n */\\ninterface IERC20Permit {\\n /**\\n * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,\\n * given ``owner``'s signed approval.\\n *\\n * IMPORTANT: The same issues {IERC20-approve} has related to transaction\\n * ordering also apply here.\\n *\\n * Emits an {Approval} event.\\n *\\n * Requirements:\\n *\\n * - `spender` cannot be the zero address.\\n * - `deadline` must be a timestamp in the future.\\n * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`\\n * over the EIP712-formatted function arguments.\\n * - the signature must use ``owner``'s current nonce (see {nonces}).\\n *\\n * For more information on the signature format, see the\\n * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP\\n * section].\\n *\\n * CAUTION: See Security Considerations above.\\n */\\n function permit(\\n address owner,\\n address spender,\\n uint256 value,\\n uint256 deadline,\\n uint8 v,\\n bytes32 r,\\n bytes32 s\\n ) external;\\n\\n /**\\n * @dev Returns the current nonce for `owner`. This value must be\\n * included whenever a signature is generated for {permit}.\\n *\\n * Every successful call to {permit} increases ``owner``'s nonce by one. This\\n * prevents a signature from being used multiple times.\\n */\\n function nonces(address owner) external view returns (uint256);\\n\\n /**\\n * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.\\n */\\n // solhint-disable-next-line func-name-mixedcase\\n function DOMAIN_SEPARATOR() external view returns (bytes32);\\n}\\n\",\"keccak256\":\"0xb264c03a3442eb37a68ad620cefd1182766b58bee6cec40343480392d6b14d69\",\"license\":\"MIT\"},\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)\\n\\npragma solidity ^0.8.0;\\n\\nimport \\\"../IERC20.sol\\\";\\nimport \\\"../extensions/IERC20Permit.sol\\\";\\nimport \\\"../../../utils/Address.sol\\\";\\n\\n/**\\n * @title SafeERC20\\n * @dev Wrappers around ERC20 operations that throw on failure (when the token\\n * contract returns false). Tokens that return no value (and instead revert or\\n * throw on failure) are also supported, non-reverting calls are assumed to be\\n * successful.\\n * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,\\n * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.\\n */\\nlibrary SafeERC20 {\\n using Address for address;\\n\\n /**\\n * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful.\\n */\\n function safeTransfer(IERC20 token, address to, uint256 value) internal {\\n _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));\\n }\\n\\n /**\\n * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the\\n * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful.\\n */\\n function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {\\n _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));\\n }\\n\\n /**\\n * @dev Deprecated. This function has issues similar to the ones found in\\n * {IERC20-approve}, and its usage is discouraged.\\n *\\n * Whenever possible, use {safeIncreaseAllowance} and\\n * {safeDecreaseAllowance} instead.\\n */\\n function safeApprove(IERC20 token, address spender, uint256 value) internal {\\n // safeApprove should only be called when setting an initial allowance,\\n // or when resetting it to zero. To increase and decrease it, use\\n // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'\\n require(\\n (value == 0) || (token.allowance(address(this), spender) == 0),\\n \\\"SafeERC20: approve from non-zero to non-zero allowance\\\"\\n );\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));\\n }\\n\\n /**\\n * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful.\\n */\\n function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {\\n uint256 oldAllowance = token.allowance(address(this), spender);\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));\\n }\\n\\n /**\\n * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful.\\n */\\n function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {\\n unchecked {\\n uint256 oldAllowance = token.allowance(address(this), spender);\\n require(oldAllowance >= value, \\\"SafeERC20: decreased allowance below zero\\\");\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));\\n }\\n }\\n\\n /**\\n * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value,\\n * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval\\n * to be set to zero before setting it to a non-zero value, such as USDT.\\n */\\n function forceApprove(IERC20 token, address spender, uint256 value) internal {\\n bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value);\\n\\n if (!_callOptionalReturnBool(token, approvalCall)) {\\n _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));\\n _callOptionalReturn(token, approvalCall);\\n }\\n }\\n\\n /**\\n * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.\\n * Revert on invalid signature.\\n */\\n function safePermit(\\n IERC20Permit token,\\n address owner,\\n address spender,\\n uint256 value,\\n uint256 deadline,\\n uint8 v,\\n bytes32 r,\\n bytes32 s\\n ) internal {\\n uint256 nonceBefore = token.nonces(owner);\\n token.permit(owner, spender, value, deadline, v, r, s);\\n uint256 nonceAfter = token.nonces(owner);\\n require(nonceAfter == nonceBefore + 1, \\\"SafeERC20: permit did not succeed\\\");\\n }\\n\\n /**\\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n * on the return value: the return value is optional (but if data is returned, it must not be false).\\n * @param token The token targeted by the call.\\n * @param data The call data (encoded using abi.encode or one of its variants).\\n */\\n function _callOptionalReturn(IERC20 token, bytes memory data) private {\\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that\\n // the target address contains contract code and also asserts for success in the low-level call.\\n\\n bytes memory returndata = address(token).functionCall(data, \\\"SafeERC20: low-level call failed\\\");\\n require(returndata.length == 0 || abi.decode(returndata, (bool)), \\\"SafeERC20: ERC20 operation did not succeed\\\");\\n }\\n\\n /**\\n * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement\\n * on the return value: the return value is optional (but if data is returned, it must not be false).\\n * @param token The token targeted by the call.\\n * @param data The call data (encoded using abi.encode or one of its variants).\\n *\\n * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead.\\n */\\n function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) {\\n // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since\\n // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false\\n // and not revert is the subcall reverts.\\n\\n (bool success, bytes memory returndata) = address(token).call(data);\\n return\\n success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token));\\n }\\n}\\n\",\"keccak256\":\"0xabefac93435967b4d36a4fabcbdbb918d1f0b7ae3c3d85bc30923b326c927ed1\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Address.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)\\n\\npragma solidity ^0.8.1;\\n\\n/**\\n * @dev Collection of functions related to the address type\\n */\\nlibrary Address {\\n /**\\n * @dev Returns true if `account` is a contract.\\n *\\n * [IMPORTANT]\\n * ====\\n * It is unsafe to assume that an address for which this function returns\\n * false is an externally-owned account (EOA) and not a contract.\\n *\\n * Among others, `isContract` will return false for the following\\n * types of addresses:\\n *\\n * - an externally-owned account\\n * - a contract in construction\\n * - an address where a contract will be created\\n * - an address where a contract lived, but was destroyed\\n *\\n * Furthermore, `isContract` will also return true if the target contract within\\n * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,\\n * which only has an effect at the end of a transaction.\\n * ====\\n *\\n * [IMPORTANT]\\n * ====\\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\\n *\\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\\n * constructor.\\n * ====\\n */\\n function isContract(address account) internal view returns (bool) {\\n // This method relies on extcodesize/address.code.length, which returns 0\\n // for contracts in construction, since the code is only stored at the end\\n // of the constructor execution.\\n\\n return account.code.length > 0;\\n }\\n\\n /**\\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\\n * `recipient`, forwarding all available gas and reverting on errors.\\n *\\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\\n * imposed by `transfer`, making them unable to receive funds via\\n * `transfer`. {sendValue} removes this limitation.\\n *\\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\\n *\\n * IMPORTANT: because control is transferred to `recipient`, care must be\\n * taken to not create reentrancy vulnerabilities. Consider using\\n * {ReentrancyGuard} or the\\n * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\\n */\\n function sendValue(address payable recipient, uint256 amount) internal {\\n require(address(this).balance >= amount, \\\"Address: insufficient balance\\\");\\n\\n (bool success, ) = recipient.call{value: amount}(\\\"\\\");\\n require(success, \\\"Address: unable to send value, recipient may have reverted\\\");\\n }\\n\\n /**\\n * @dev Performs a Solidity function call using a low level `call`. A\\n * plain `call` is an unsafe replacement for a function call: use this\\n * function instead.\\n *\\n * If `target` reverts with a revert reason, it is bubbled up by this\\n * function (like regular Solidity function calls).\\n *\\n * Returns the raw returned data. To convert to the expected return value,\\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\\n *\\n * Requirements:\\n *\\n * - `target` must be a contract.\\n * - calling `target` with `data` must not revert.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, \\\"Address: low-level call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\\n * `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, 0, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but also transferring `value` wei to `target`.\\n *\\n * Requirements:\\n *\\n * - the calling contract must have an ETH balance of at least `value`.\\n * - the called Solidity function must be `payable`.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\\n return functionCallWithValue(target, data, value, \\\"Address: low-level call with value failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\\n * with `errorMessage` as a fallback revert reason when `target` reverts.\\n *\\n * _Available since v3.1._\\n */\\n function functionCallWithValue(\\n address target,\\n bytes memory data,\\n uint256 value,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n require(address(this).balance >= value, \\\"Address: insufficient balance for call\\\");\\n (bool success, bytes memory returndata) = target.call{value: value}(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\\n return functionStaticCall(target, data, \\\"Address: low-level static call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a static call.\\n *\\n * _Available since v3.3._\\n */\\n function functionStaticCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.staticcall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\\n return functionDelegateCall(target, data, \\\"Address: low-level delegate call failed\\\");\\n }\\n\\n /**\\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\\n * but performing a delegate call.\\n *\\n * _Available since v3.4._\\n */\\n function functionDelegateCall(\\n address target,\\n bytes memory data,\\n string memory errorMessage\\n ) internal returns (bytes memory) {\\n (bool success, bytes memory returndata) = target.delegatecall(data);\\n return verifyCallResultFromTarget(target, success, returndata, errorMessage);\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling\\n * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.\\n *\\n * _Available since v4.8._\\n */\\n function verifyCallResultFromTarget(\\n address target,\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal view returns (bytes memory) {\\n if (success) {\\n if (returndata.length == 0) {\\n // only check isContract if the call was successful and the return data is empty\\n // otherwise we already know that it was a contract\\n require(isContract(target), \\\"Address: call to non-contract\\\");\\n }\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n /**\\n * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the\\n * revert reason or using the provided one.\\n *\\n * _Available since v4.3._\\n */\\n function verifyCallResult(\\n bool success,\\n bytes memory returndata,\\n string memory errorMessage\\n ) internal pure returns (bytes memory) {\\n if (success) {\\n return returndata;\\n } else {\\n _revert(returndata, errorMessage);\\n }\\n }\\n\\n function _revert(bytes memory returndata, string memory errorMessage) private pure {\\n // Look for revert reason and bubble it up if present\\n if (returndata.length > 0) {\\n // The easiest way to bubble the revert reason is using memory via assembly\\n /// @solidity memory-safe-assembly\\n assembly {\\n let returndata_size := mload(returndata)\\n revert(add(32, returndata), returndata_size)\\n }\\n } else {\\n revert(errorMessage);\\n }\\n }\\n}\\n\",\"keccak256\":\"0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa\",\"license\":\"MIT\"},\"@openzeppelin/contracts/utils/Context.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\\n\\npragma solidity ^0.8.0;\\n\\n/**\\n * @dev Provides information about the current execution context, including the\\n * sender of the transaction and its data. While these are generally available\\n * via msg.sender and msg.data, they should not be accessed in such a direct\\n * manner, since when dealing with meta-transactions the account sending and\\n * paying for execution may not be the actual sender (as far as an application\\n * is concerned).\\n *\\n * This contract is only required for intermediate, library-like contracts.\\n */\\nabstract contract Context {\\n function _msgSender() internal view virtual returns (address) {\\n return msg.sender;\\n }\\n\\n function _msgData() internal view virtual returns (bytes calldata) {\\n return msg.data;\\n }\\n\\n function _contextSuffixLength() internal view virtual returns (uint256) {\\n return 0;\\n }\\n}\\n\",\"keccak256\":\"0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439\",\"license\":\"MIT\"},\"contracts/activity/CECDistributor.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity 0.8.19;\\n\\nimport {ReentrancyGuard} from \\\"@openzeppelin/contracts/security/ReentrancyGuard.sol\\\";\\nimport {Pausable} from \\\"@openzeppelin/contracts/security/Pausable.sol\\\";\\nimport {IERC20} from \\\"@openzeppelin/contracts/token/ERC20/IERC20.sol\\\";\\nimport {SafeERC20} from \\\"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\\\";\\nimport {Ownable} from \\\"@openzeppelin/contracts/access/Ownable.sol\\\";\\nimport {Governable} from \\\"../core/Governable.sol\\\";\\n\\n/**\\n * @title CECDistributor\\n * @dev CECDistributor is a contract for distributing CEC token with unlock time\\n * after all data is set, transfer owner to timelock contract\\n */\\ncontract CECDistributor is ReentrancyGuard, Pausable, Ownable, Governable {\\n using SafeERC20 for IERC20;\\n\\n struct ReleaseInfo {\\n uint256 amount;\\n uint256 releaseAllMonth;\\n uint256 tgeRatio;\\n uint256 lockDuration;\\n }\\n \\n mapping(address account => ReleaseInfo info) public infoMap;\\n mapping(address account => uint256 amount) public releasedMap;\\n\\n string public name;\\n IERC20 public immutable cecToken;\\n uint256 public constant DURATION = 86400 * 30;\\n\\n uint256 public start = 0;\\n uint256 public constant TGE_PRECISION = 1000000;\\n uint256 public lockDuration;\\n\\n event EventInfoUpdated(address indexed account, ReleaseInfo info);\\n event EventCECClaimed(address indexed user, address indexed to, uint256 amount);\\n event EventChangeAddress(address oldAddr, address newAddr);\\n\\n \\n constructor(\\n string memory _name,\\n address _cecToken,\\n uint256 _start\\n ) {\\n name = _name;\\n cecToken = IERC20(_cecToken);\\n start = _start;\\n }\\n\\n /**\\n * @dev Throws if called by any account other than the owner or gov.\\n */\\n modifier ownerOrGov() {\\n require(msg.sender == owner() || msg.sender == gov, \\\"CECDistributor: forbidden\\\");\\n _;\\n }\\n\\n function setGov(address _gov) external override onlyOwner {\\n gov = _gov;\\n }\\n /**\\n * @dev update pause state\\n * When encountering special circumstances that require an emergency pause of the contract,\\n * the pause function can be called by the gov account to quickly pause the contract and minimize losses.\\n */\\n function pause() external ownerOrGov {\\n _pause();\\n }\\n\\n /**\\n * @dev update unpause state\\n */\\n function unpause() external ownerOrGov {\\n _unpause();\\n }\\n\\n function withdrawToken(address to, uint256 amount) external onlyOwner {\\n cecToken.safeTransfer(to, amount);\\n }\\n\\n function updateInfo(address[] calldata accounts, ReleaseInfo[] calldata infos) external onlyOwner {\\n require(accounts.length == infos.length, \\\"CECDistributor: invalid input\\\");\\n for (uint256 i = 0; i < accounts.length; i++) {\\n infoMap[accounts[i]] = infos[i];\\n emit EventInfoUpdated(accounts[i], infos[i]);\\n }\\n }\\n\\n function calcClaimAmount(address user) public view whenNotPaused returns (uint256) {\\n require(infoMap[user].amount > 0, \\\"CECDistributor: not in whitelist\\\");\\n require(block.timestamp >= start, \\\"CECDistributor: not in claim time\\\");\\n uint256 claimAmount = 0;\\n uint256 tgeAmount = 0;\\n ReleaseInfo memory info = infoMap[user];\\n if (info.tgeRatio > 0) {\\n tgeAmount = ((info.amount * info.tgeRatio) / TGE_PRECISION);\\n claimAmount += tgeAmount;\\n }\\n if (block.timestamp > start + info.lockDuration) {\\n uint256 monthNum = (block.timestamp - start - info.lockDuration) / DURATION;\\n if (monthNum <= info.releaseAllMonth) {\\n claimAmount += (((info.amount - tgeAmount) * monthNum) / info.releaseAllMonth);\\n } else {\\n claimAmount = info.amount;\\n }\\n }\\n claimAmount -= releasedMap[user];\\n return claimAmount;\\n }\\n\\n function claim(address to) external nonReentrant whenNotPaused returns (uint256) {\\n require(start > 0, \\\"CECDistributor: start isn't init\\\");\\n require(to != address(0), \\\"CECDistributor: invalid address\\\");\\n address _user = _msgSender();\\n uint256 amount = calcClaimAmount(_user);\\n if (amount > 0) {\\n releasedMap[_user] = releasedMap[_user] + amount;\\n cecToken.safeTransfer(to, amount);\\n emit EventCECClaimed(_user, to, amount);\\n }\\n return amount;\\n }\\n\\n function changeAddress(address from, address to) external {\\n require(infoMap[to].amount == 0, \\\"CECDistributor: new addr is in whitelist\\\");\\n require(infoMap[from].amount > 0, \\\"CECDistributor: not in whitelist\\\");\\n address _sender = _msgSender();\\n require(_sender == owner() || _sender == from, \\\"CECDistributor: sender not allowed\\\");\\n infoMap[to] = infoMap[from];\\n delete infoMap[from];\\n releasedMap[to] = releasedMap[from];\\n releasedMap[from] = 0;\\n emit EventChangeAddress(from, to);\\n }\\n}\\n\",\"keccak256\":\"0x9165957e96d94fa3374c4371ee74dc50a46a6f6df530061eda2ad79c2f213af3\",\"license\":\"MIT\"},\"contracts/core/Governable.sol\":{\"content\":\"// SPDX-License-Identifier: MIT\\npragma solidity 0.8.19;\\n\\ncontract Governable {\\n address public gov;\\n\\n constructor() {\\n gov = msg.sender;\\n }\\n\\n modifier onlyGov() {\\n require(msg.sender == gov, \\\"Governable: forbidden\\\");\\n _;\\n }\\n\\n function setGov(address _gov) external virtual onlyGov {\\n gov = _gov;\\n }\\n}\\n\",\"keccak256\":\"0x41066d736cf570d77335785327703ad95a6634823ebec5543086aecdce7038fb\",\"license\":\"MIT\"}},\"version\":1}", + "bytecode": "0x60a0604052346200029e5762001588803803806200001d81620002b8565b9283398101906060818303126200029e5780516001600160401b0391908281116200029e578101601f928484830112156200029e578151928184116200028857602093601f19936200007587830186168701620002b8565b978289528683830101116200029e57859060005b838110620002a357505060009188010152808401516001600160a01b0380821696909290918790036200029e57604001519660019283600055835490610100600160a81b033360081b1660018060a81b03198316178555339160081c167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3600280546001600160a01b031916331790558051938411620002885760059586548481811c911680156200027d575b8282101462000267578381116200021e575b5080928511600114620001b5575083945090839291600094620001a9575b50501b916000199060031b1c19161790555b6080526006556040516112a99081620002df82396080518181816103bc0152818161050301526109b60152f35b0151925038806200016a565b9294849081168760005284600020946000905b88838310620002035750505010620001e9575b505050811b0190556200017c565b015160001960f88460031b161c19169055388080620001db565b858701518855909601959485019487935090810190620001c8565b8760005281600020848088018a1c8201928489106200025d575b01891c019085905b828110620002505750506200014c565b6000815501859062000240565b9250819262000238565b634e487b7160e01b600052602260045260246000fd5b90607f16906200013a565b634e487b7160e01b600052604160045260246000fd5b600080fd5b8181018301518a820184015287920162000089565b6040519190601f01601f191682016001600160401b03811183821017620002885760405256fe6080604081815260048036101561001557600080fd5b600092833560e01c9081630455444314610c1d5750806306fdde0314610b1b57806312d43a5114610af25780631be0528914610ad45780631e83409a14610926578063223ea761146108f15780632530ff32146107255780633f4ba83a146106795780635c975abb14610655578063715018a6146105f45780637b488726146105d65780638456cb59146105575780638da5cb5b1461052a5780639e281a98146104d9578063a2befa64146104ac578063be9a65551461048d578063cfad57a214610445578063ec1653ad146103eb578063edd47d94146103a7578063efe08a7d146101e55763f2fde38b1461010a57600080fd5b346101e15760203660031901126101e157610123610cd6565b61012b610cf1565b6001600160a01b0381811693909290841561018f57505060018054610100600160a81b03198116600893841b610100600160a81b031617909155901c167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b509190346103a357806003193601126103a357610200610cd6565b6001600160a01b0390602435828116919082900361039f578185526003956020918783528587205461034c578416938487528783526102438688205415156111e5565b60015460081c1633148015610343575b156102f757858097857f779af3947d5b0ad2ecc0e40a25f1a2fc6ff98ef2ae950542a554bcfa5dd21ace985280845286822085835281888420918083036102d0575b50505085825286822082815582600182015582600282015501558152838620548287528487205582865285848120558351928352820152a180f35b80829154845560018101546001850155600281015460028501550154910155388181610295565b60849185519162461bcd60e51b8352820152602260248201527f4345434469737472696275746f723a2073656e646572206e6f7420616c6c6f77604482015261195960f21b6064820152fd5b50833314610253565b5060849185519162461bcd60e51b8352820152602860248201527f4345434469737472696275746f723a206e6577206164647220697320696e20776044820152671a1a5d195b1a5cdd60c21b6064820152fd5b8480fd5b5080fd5b5050346103a357816003193601126103a357517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b5050346103a35760203660031901126103a35760809181906001600160a01b03610413610cd6565b168152600360205220908154916001810154916003600283015492015492815194855260208501528301526060820152f35b833461048a57602036600319011261048a5761045f610cd6565b610467610cf1565b60018060a01b03166bffffffffffffffffffffffff60a01b600254161760025580f35b80fd5b5050346103a357816003193601126103a3576020906006549051908152f35b5050346103a35760203660031901126103a3576020906104d26104cd610cd6565b611036565b9051908152f35b5050346103a35736600319011261048a576105276104f5610cd6565b6104fd610cf1565b602435907f0000000000000000000000000000000000000000000000000000000000000000610ddc565b80f35b5050346103a357816003193601126103a357600154905160089190911c6001600160a01b03168152602090f35b5050346103a357816003193601126103a35760207f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25891600180546105b0828060a01b03808360081c1633149081156105c8575b50610d4c565b6105b8610d98565b60ff19161760015551338152a180f35b9050600254163314386105aa565b5050346103a357816003193601126103a35760209051620f42408152f35b833461048a578060031936011261048a5761060d610cf1565b60018054610100600160a81b03198116909155819060081c6001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050346103a357816003193601126103a35760209060ff6001541690519015158152f35b50346101e157826003193601126101e157600154906106ad60018060a01b03808460081c1633149081156105c85750610d4c565b60ff8216156106eb575060ff1916600155513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a180f35b606490602084519162461bcd60e51b8352820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152fd5b5090346101e157806003193601126101e15767ffffffffffffffff91803583811161039f573660238201121561039f5780820135908482116108ed57602494858201918636918560051b0101116108e9578535918183116108e557366023840112156108e557828501359182116108e557868301928736918460071b0101116108e5576107b0610cf1565b8184036108a357875b8481106107c4578880f35b6107cf818486610fec565b6001600160a01b03806107e3848987611012565b6107ec90611022565b168b526003916020928084528a8d2090823582558483013560018301558b8301356002830155606080930135910155610826848987611012565b61082f90611022565b908061083c86898b610fec565b8c51958135875280820135908701528c8101358d870152013590840152169060807fbd1d1bfee659843ad67fee52b9f569e75c46d2624ce7aaeb2245f3d51a21736791a26000198114610891576001016107b9565b634e487b7160e01b8952601186528789fd5b855162461bcd60e51b8152602081870152601d818901527f4345434469737472696275746f723a20696e76616c696420696e7075740000006044820152606490fd5b8780fd5b8680fd5b8580fd5b50346101e15760203660031901126101e15760209282916001600160a01b03610918610cd6565b168252845220549051908152f35b5090346101e1576020928360031936011261048a57610943610cd6565b926002825414610a915760028255610959610d98565b60065415610a50576001600160a01b038416908115610a0d57906001929161098033611036565b809681610993575b505050505551908152f35b6109da92338652808a526109aa8389882054611259565b903387528a52878620557f0000000000000000000000000000000000000000000000000000000000000000610ddc565b83518581527fbf6cfe5f315586d4e47336a40b5e3d3313fd55af8075c5d2eadf8e7723119412873392a338808581610988565b835162461bcd60e51b8152908101869052601f60248201527f4345434469737472696275746f723a20696e76616c69642061646472657373006044820152606490fd5b606490858085519262461bcd60e51b845283015260248201527f4345434469737472696275746f723a2073746172742069736e277420696e69746044820152fd5b825162461bcd60e51b8152908101859052601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b5050346103a357816003193601126103a3576020905162278d008152f35b5050346103a357816003193601126103a35760025490516001600160a01b039091168152602090f35b5090346101e157826003193601126101e157805191836005549060019082821c928281168015610c13575b6020958686108214610c005750848852908115610bde5750600114610b85575b610b818686610b77828b0383610c6b565b5191829182610c8d565b0390f35b929550600583527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b828410610bcb5750505082610b8194610b77928201019438610b66565b8054868501880152928601928101610bae565b60ff191687860152505050151560051b8301019250610b7782610b8138610b66565b634e487b7160e01b845260229052602483fd5b93607f1693610b46565b8490346103a357816003193601126103a3576020906007548152f35b6080810190811067ffffffffffffffff821117610c5557604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff821117610c5557604052565b6020808252825181830181905290939260005b828110610cc257505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610ca0565b600435906001600160a01b0382168203610cec57565b600080fd5b60015460081c6001600160a01b03163303610d0857565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b15610d5357565b60405162461bcd60e51b815260206004820152601960248201527f4345434469737472696275746f723a20666f7262696464656e000000000000006044820152606490fd5b60ff60015416610da457565b60405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606490fd5b916040918251906020948583019363a9059cbb60e01b855260018060a01b038093166024850152604484015260448352610e1583610c39565b16908351918483019167ffffffffffffffff9284811084821117610c555786528684527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656487850152600080958192519082855af1903d15610f4c573d928311610f385790610ea2939291865192610e9589601f19601f8401160185610c6b565b83523d868985013e610f57565b805191821591858315610f14575b505050905015610ebe575050565b60849250519062461bcd60e51b82526004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152fd5b9193818094500103126103a35783015190811515820361048a575080388085610eb0565b634e487b7160e01b85526041600452602485fd5b90610ea29392506060915b91929015610fb95750815115610f6b575090565b3b15610f745790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b825190915015610fcc5750805190602001fd5b60405162461bcd60e51b8152908190610fe89060048301610c8d565b0390fd5b9190811015610ffc5760071b0190565b634e487b7160e01b600052603260045260246000fd5b9190811015610ffc5760051b0190565b356001600160a01b0381168103610cec5790565b61103e610d98565b6001600160a01b031660008181526003602052604080822054919392916110669015156111e5565b6006549182421061119757808552600360205281852082518694859061108b83610c39565b835490818452600185015494602085019586526003600282015491828a880152015492606086019384528161117a575b50506110c8825182611259565b42116110ec575b5050505050936110e9939481526004602052205490611266565b90565b62278d00916111016111099299979942611266565b905190611266565b049183518311156000146111685761112b92916111269151611266565b611230565b90519081156111545791611146916110e99697930490611259565b925b909493388080806110cf565b634e487b7160e01b87526012600452602487fd5b925050506110e9949591505192611148565b61118c929950620f4240939450611230565b0490819638806110bb565b815162461bcd60e51b815260206004820152602160248201527f4345434469737472696275746f723a206e6f7420696e20636c61696d2074696d6044820152606560f81b6064820152608490fd5b156111ec57565b606460405162461bcd60e51b815260206004820152602060248201527f4345434469737472696275746f723a206e6f7420696e2077686974656c6973746044820152fd5b8181029291811591840414171561124357565b634e487b7160e01b600052601160045260246000fd5b9190820180921161124357565b919082039182116112435756fea264697066735822122013d2e9540807bf3e353a9d9ec517b76979372f8cf506aefd4cf544fb369f13d364736f6c63430008130033", + "deployedBytecode": "0x6080604081815260048036101561001557600080fd5b600092833560e01c9081630455444314610c1d5750806306fdde0314610b1b57806312d43a5114610af25780631be0528914610ad45780631e83409a14610926578063223ea761146108f15780632530ff32146107255780633f4ba83a146106795780635c975abb14610655578063715018a6146105f45780637b488726146105d65780638456cb59146105575780638da5cb5b1461052a5780639e281a98146104d9578063a2befa64146104ac578063be9a65551461048d578063cfad57a214610445578063ec1653ad146103eb578063edd47d94146103a7578063efe08a7d146101e55763f2fde38b1461010a57600080fd5b346101e15760203660031901126101e157610123610cd6565b61012b610cf1565b6001600160a01b0381811693909290841561018f57505060018054610100600160a81b03198116600893841b610100600160a81b031617909155901c167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b509190346103a357806003193601126103a357610200610cd6565b6001600160a01b0390602435828116919082900361039f578185526003956020918783528587205461034c578416938487528783526102438688205415156111e5565b60015460081c1633148015610343575b156102f757858097857f779af3947d5b0ad2ecc0e40a25f1a2fc6ff98ef2ae950542a554bcfa5dd21ace985280845286822085835281888420918083036102d0575b50505085825286822082815582600182015582600282015501558152838620548287528487205582865285848120558351928352820152a180f35b80829154845560018101546001850155600281015460028501550154910155388181610295565b60849185519162461bcd60e51b8352820152602260248201527f4345434469737472696275746f723a2073656e646572206e6f7420616c6c6f77604482015261195960f21b6064820152fd5b50833314610253565b5060849185519162461bcd60e51b8352820152602860248201527f4345434469737472696275746f723a206e6577206164647220697320696e20776044820152671a1a5d195b1a5cdd60c21b6064820152fd5b8480fd5b5080fd5b5050346103a357816003193601126103a357517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b5050346103a35760203660031901126103a35760809181906001600160a01b03610413610cd6565b168152600360205220908154916001810154916003600283015492015492815194855260208501528301526060820152f35b833461048a57602036600319011261048a5761045f610cd6565b610467610cf1565b60018060a01b03166bffffffffffffffffffffffff60a01b600254161760025580f35b80fd5b5050346103a357816003193601126103a3576020906006549051908152f35b5050346103a35760203660031901126103a3576020906104d26104cd610cd6565b611036565b9051908152f35b5050346103a35736600319011261048a576105276104f5610cd6565b6104fd610cf1565b602435907f0000000000000000000000000000000000000000000000000000000000000000610ddc565b80f35b5050346103a357816003193601126103a357600154905160089190911c6001600160a01b03168152602090f35b5050346103a357816003193601126103a35760207f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25891600180546105b0828060a01b03808360081c1633149081156105c8575b50610d4c565b6105b8610d98565b60ff19161760015551338152a180f35b9050600254163314386105aa565b5050346103a357816003193601126103a35760209051620f42408152f35b833461048a578060031936011261048a5761060d610cf1565b60018054610100600160a81b03198116909155819060081c6001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b5050346103a357816003193601126103a35760209060ff6001541690519015158152f35b50346101e157826003193601126101e157600154906106ad60018060a01b03808460081c1633149081156105c85750610d4c565b60ff8216156106eb575060ff1916600155513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a180f35b606490602084519162461bcd60e51b8352820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152fd5b5090346101e157806003193601126101e15767ffffffffffffffff91803583811161039f573660238201121561039f5780820135908482116108ed57602494858201918636918560051b0101116108e9578535918183116108e557366023840112156108e557828501359182116108e557868301928736918460071b0101116108e5576107b0610cf1565b8184036108a357875b8481106107c4578880f35b6107cf818486610fec565b6001600160a01b03806107e3848987611012565b6107ec90611022565b168b526003916020928084528a8d2090823582558483013560018301558b8301356002830155606080930135910155610826848987611012565b61082f90611022565b908061083c86898b610fec565b8c51958135875280820135908701528c8101358d870152013590840152169060807fbd1d1bfee659843ad67fee52b9f569e75c46d2624ce7aaeb2245f3d51a21736791a26000198114610891576001016107b9565b634e487b7160e01b8952601186528789fd5b855162461bcd60e51b8152602081870152601d818901527f4345434469737472696275746f723a20696e76616c696420696e7075740000006044820152606490fd5b8780fd5b8680fd5b8580fd5b50346101e15760203660031901126101e15760209282916001600160a01b03610918610cd6565b168252845220549051908152f35b5090346101e1576020928360031936011261048a57610943610cd6565b926002825414610a915760028255610959610d98565b60065415610a50576001600160a01b038416908115610a0d57906001929161098033611036565b809681610993575b505050505551908152f35b6109da92338652808a526109aa8389882054611259565b903387528a52878620557f0000000000000000000000000000000000000000000000000000000000000000610ddc565b83518581527fbf6cfe5f315586d4e47336a40b5e3d3313fd55af8075c5d2eadf8e7723119412873392a338808581610988565b835162461bcd60e51b8152908101869052601f60248201527f4345434469737472696275746f723a20696e76616c69642061646472657373006044820152606490fd5b606490858085519262461bcd60e51b845283015260248201527f4345434469737472696275746f723a2073746172742069736e277420696e69746044820152fd5b825162461bcd60e51b8152908101859052601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606490fd5b5050346103a357816003193601126103a3576020905162278d008152f35b5050346103a357816003193601126103a35760025490516001600160a01b039091168152602090f35b5090346101e157826003193601126101e157805191836005549060019082821c928281168015610c13575b6020958686108214610c005750848852908115610bde5750600114610b85575b610b818686610b77828b0383610c6b565b5191829182610c8d565b0390f35b929550600583527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db05b828410610bcb5750505082610b8194610b77928201019438610b66565b8054868501880152928601928101610bae565b60ff191687860152505050151560051b8301019250610b7782610b8138610b66565b634e487b7160e01b845260229052602483fd5b93607f1693610b46565b8490346103a357816003193601126103a3576020906007548152f35b6080810190811067ffffffffffffffff821117610c5557604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff821117610c5557604052565b6020808252825181830181905290939260005b828110610cc257505060409293506000838284010152601f8019910116010190565b818101860151848201604001528501610ca0565b600435906001600160a01b0382168203610cec57565b600080fd5b60015460081c6001600160a01b03163303610d0857565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b15610d5357565b60405162461bcd60e51b815260206004820152601960248201527f4345434469737472696275746f723a20666f7262696464656e000000000000006044820152606490fd5b60ff60015416610da457565b60405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606490fd5b916040918251906020948583019363a9059cbb60e01b855260018060a01b038093166024850152604484015260448352610e1583610c39565b16908351918483019167ffffffffffffffff9284811084821117610c555786528684527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656487850152600080958192519082855af1903d15610f4c573d928311610f385790610ea2939291865192610e9589601f19601f8401160185610c6b565b83523d868985013e610f57565b805191821591858315610f14575b505050905015610ebe575050565b60849250519062461bcd60e51b82526004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152fd5b9193818094500103126103a35783015190811515820361048a575080388085610eb0565b634e487b7160e01b85526041600452602485fd5b90610ea29392506060915b91929015610fb95750815115610f6b575090565b3b15610f745790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b825190915015610fcc5750805190602001fd5b60405162461bcd60e51b8152908190610fe89060048301610c8d565b0390fd5b9190811015610ffc5760071b0190565b634e487b7160e01b600052603260045260246000fd5b9190811015610ffc5760051b0190565b356001600160a01b0381168103610cec5790565b61103e610d98565b6001600160a01b031660008181526003602052604080822054919392916110669015156111e5565b6006549182421061119757808552600360205281852082518694859061108b83610c39565b835490818452600185015494602085019586526003600282015491828a880152015492606086019384528161117a575b50506110c8825182611259565b42116110ec575b5050505050936110e9939481526004602052205490611266565b90565b62278d00916111016111099299979942611266565b905190611266565b049183518311156000146111685761112b92916111269151611266565b611230565b90519081156111545791611146916110e99697930490611259565b925b909493388080806110cf565b634e487b7160e01b87526012600452602487fd5b925050506110e9949591505192611148565b61118c929950620f4240939450611230565b0490819638806110bb565b815162461bcd60e51b815260206004820152602160248201527f4345434469737472696275746f723a206e6f7420696e20636c61696d2074696d6044820152606560f81b6064820152608490fd5b156111ec57565b606460405162461bcd60e51b815260206004820152602060248201527f4345434469737472696275746f723a206e6f7420696e2077686974656c6973746044820152fd5b8181029291811591840414171561124357565b634e487b7160e01b600052601160045260246000fd5b9190820180921161124357565b919082039182116112435756fea264697066735822122013d2e9540807bf3e353a9d9ec517b76979372f8cf506aefd4cf544fb369f13d364736f6c63430008130033", "devdoc": { "details": "CECDistributor is a contract for distributing CEC token with unlock time after all data is set, transfer owner to timelock contract", "events": { @@ -571,7 +591,7 @@ "type": "t_address" }, { - "astId": 1647, + "astId": 1640, "contract": "contracts/activity/CECDistributor.sol:CECDistributor", "label": "gov", "offset": 0, @@ -579,23 +599,23 @@ "type": "t_address" }, { - "astId": 1166, + "astId": 1176, "contract": "contracts/activity/CECDistributor.sol:CECDistributor", - "label": "balanceMap", + "label": "infoMap", "offset": 0, "slot": "3", - "type": "t_mapping(t_address,t_uint256)" + "type": "t_mapping(t_address,t_struct(ReleaseInfo)1171_storage)" }, { - "astId": 1170, + "astId": 1180, "contract": "contracts/activity/CECDistributor.sol:CECDistributor", - "label": "releaseMap", + "label": "releasedMap", "offset": 0, "slot": "4", "type": "t_mapping(t_address,t_uint256)" }, { - "astId": 1172, + "astId": 1182, "contract": "contracts/activity/CECDistributor.sol:CECDistributor", "label": "name", "offset": 0, @@ -603,44 +623,20 @@ "type": "t_string_storage" }, { - "astId": 1182, + "astId": 1193, "contract": "contracts/activity/CECDistributor.sol:CECDistributor", - "label": "releaseAllMonth", + "label": "start", "offset": 0, "slot": "6", "type": "t_uint256" }, { - "astId": 1185, - "contract": "contracts/activity/CECDistributor.sol:CECDistributor", - "label": "start", - "offset": 0, - "slot": "7", - "type": "t_uint256" - }, - { - "astId": 1187, - "contract": "contracts/activity/CECDistributor.sol:CECDistributor", - "label": "tgeRatio", - "offset": 0, - "slot": "8", - "type": "t_uint256" - }, - { - "astId": 1192, + "astId": 1198, "contract": "contracts/activity/CECDistributor.sol:CECDistributor", "label": "lockDuration", "offset": 0, - "slot": "9", + "slot": "7", "type": "t_uint256" - }, - { - "astId": 1194, - "contract": "contracts/activity/CECDistributor.sol:CECDistributor", - "label": "wallet", - "offset": 0, - "slot": "10", - "type": "t_address" } ], "types": { @@ -654,6 +650,13 @@ "label": "bool", "numberOfBytes": "1" }, + "t_mapping(t_address,t_struct(ReleaseInfo)1171_storage)": { + "encoding": "mapping", + "key": "t_address", + "label": "mapping(address => struct CECDistributor.ReleaseInfo)", + "numberOfBytes": "32", + "value": "t_struct(ReleaseInfo)1171_storage" + }, "t_mapping(t_address,t_uint256)": { "encoding": "mapping", "key": "t_address", @@ -666,6 +669,45 @@ "label": "string", "numberOfBytes": "32" }, + "t_struct(ReleaseInfo)1171_storage": { + "encoding": "inplace", + "label": "struct CECDistributor.ReleaseInfo", + "members": [ + { + "astId": 1164, + "contract": "contracts/activity/CECDistributor.sol:CECDistributor", + "label": "amount", + "offset": 0, + "slot": "0", + "type": "t_uint256" + }, + { + "astId": 1166, + "contract": "contracts/activity/CECDistributor.sol:CECDistributor", + "label": "releaseAllMonth", + "offset": 0, + "slot": "1", + "type": "t_uint256" + }, + { + "astId": 1168, + "contract": "contracts/activity/CECDistributor.sol:CECDistributor", + "label": "tgeRatio", + "offset": 0, + "slot": "2", + "type": "t_uint256" + }, + { + "astId": 1170, + "contract": "contracts/activity/CECDistributor.sol:CECDistributor", + "label": "lockDuration", + "offset": 0, + "slot": "3", + "type": "t_uint256" + } + ], + "numberOfBytes": "128" + }, "t_uint256": { "encoding": "inplace", "label": "uint256", diff --git a/deployments/bsc_test/solcInputs/51ba64eae03e4e6310445724f0bd32d5.json b/deployments/bsc_test/solcInputs/d182e288a80dfac1af2ff3d65d72ce7e.json similarity index 89% rename from deployments/bsc_test/solcInputs/51ba64eae03e4e6310445724f0bd32d5.json rename to deployments/bsc_test/solcInputs/d182e288a80dfac1af2ff3d65d72ce7e.json index 483a03b..865fe1d 100644 --- a/deployments/bsc_test/solcInputs/51ba64eae03e4e6310445724f0bd32d5.json +++ b/deployments/bsc_test/solcInputs/d182e288a80dfac1af2ff3d65d72ce7e.json @@ -26,7 +26,7 @@ "content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n\n function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n" }, "contracts/activity/CECDistributor.sol": { - "content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.19;\n\nimport {ReentrancyGuard} from \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\nimport {Pausable} from \"@openzeppelin/contracts/security/Pausable.sol\";\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {Ownable} from \"@openzeppelin/contracts/access/Ownable.sol\";\nimport {Governable} from \"../core/Governable.sol\";\n\n/**\n * @title CECDistributor\n * @dev CECDistributor is a contract for distributing CEC token with unlock time\n * after all data is set, transfer owner to timelock contract\n */\ncontract CECDistributor is ReentrancyGuard, Pausable, Ownable, Governable {\n using SafeERC20 for IERC20;\n\n mapping(address account => uint256 amount) public balanceMap;\n mapping(address account => uint256 amount) public releaseMap;\n\n string public name;\n IERC20 public immutable cecToken;\n uint256 public constant DURATION = 86400 * 30;\n uint256 private releaseAllMonth;\n\n uint256 public start = 0;\n // release ratio when tge\n uint256 public tgeRatio;\n uint256 public constant TGE_PRECISION = 1000000;\n //\n uint256 public lockDuration;\n address public wallet;\n\n event EventBalanceUpdated(address indexed account, uint256 amount);\n event EventCECClaimed(address indexed user, address indexed to, uint256 amount);\n event EventChangeAddress(address oldAddr, address newAddr);\n\n constructor(\n string memory _name,\n address _cecToken, \n address _wallet, \n uint256 _lockDuration, \n uint256 _releaseAllMonth, \n uint256 _tgeRatio\n ) {\n name = _name;\n cecToken = IERC20(_cecToken);\n wallet = _wallet;\n lockDuration = _lockDuration;\n releaseAllMonth = _releaseAllMonth;\n tgeRatio = _tgeRatio;\n }\n\n /**\n * @dev Throws if called by any account other than the owner or gov.\n */\n modifier ownerOrGov() {\n require(msg.sender == owner() || msg.sender == gov, \"CECDistributor: forbidden\");\n _;\n }\n\n function setGov(address _gov) external override onlyOwner {\n gov = _gov;\n }\n /**\n * @dev update pause state\n * When encountering special circumstances that require an emergency pause of the contract,\n * the pause function can be called by the gov account to quickly pause the contract and minimize losses.\n */\n function pause() external ownerOrGov {\n _pause();\n }\n\n /**\n * @dev update unpause state\n */\n function unpause() external ownerOrGov {\n _unpause();\n }\n\n function setStart(uint256 newStart) external ownerOrGov {\n require(newStart > 0 && start == 0, \"CECDistributor: it's already initialized\");\n start = newStart;\n }\n\n function updateBalances(address[] calldata accounts, uint256[] calldata amounts) external onlyOwner {\n require(accounts.length == amounts.length, \"CECDistributor: invalid input\");\n for (uint256 i = 0; i < accounts.length; i++) {\n balanceMap[accounts[i]] = amounts[i];\n emit EventBalanceUpdated(accounts[i], amounts[i]);\n }\n }\n\n function calcClaimAmount(address user) public view whenNotPaused returns (uint256) {\n require(balanceMap[user] > 0, \"CECDistributor: not in whitelist\");\n require(block.timestamp >= start, \"CECDistributor: not in claim time\");\n uint256 claimAmount = 0;\n uint256 tgeAmount = 0;\n if (tgeRatio > 0) {\n tgeAmount = ((balanceMap[user] * tgeRatio) / TGE_PRECISION);\n claimAmount += tgeAmount;\n }\n if (block.timestamp > start + lockDuration) {\n uint256 monthNum = (block.timestamp - start - lockDuration) / DURATION;\n if (monthNum <= releaseAllMonth) {\n claimAmount += (((balanceMap[user] - tgeAmount) * monthNum) / releaseAllMonth);\n } else {\n claimAmount = balanceMap[user];\n }\n }\n claimAmount -= releaseMap[user];\n return claimAmount;\n }\n\n function claim(address to) external nonReentrant whenNotPaused returns (uint256) {\n require(start > 0, \"CECDistributor: start isn't init\");\n require(to != address(0), \"CECDistributor: invalid address\");\n address _user = _msgSender();\n uint256 amount = calcClaimAmount(_user);\n if (amount > 0) {\n releaseMap[_user] = amount;\n cecToken.safeTransferFrom(wallet, to, amount);\n emit EventCECClaimed(_user, to, amount);\n }\n return amount;\n }\n\n function changeAddress(address from, address to) external {\n require(balanceMap[to] == 0, \"CECDistributor: new addr is in whitelist\");\n require(balanceMap[from] > 0, \"CECDistributor: not in whitelist\");\n address _sender = _msgSender();\n require(_sender == owner() || _sender == gov || _sender == from, \"CECDistributor: sender not allowed\");\n balanceMap[to] = balanceMap[from];\n balanceMap[from] = 0;\n releaseMap[to] = releaseMap[from];\n releaseMap[from] = 0;\n emit EventChangeAddress(from, to);\n }\n}\n" + "content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.19;\n\nimport {ReentrancyGuard} from \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\nimport {Pausable} from \"@openzeppelin/contracts/security/Pausable.sol\";\nimport {IERC20} from \"@openzeppelin/contracts/token/ERC20/IERC20.sol\";\nimport {SafeERC20} from \"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol\";\nimport {Ownable} from \"@openzeppelin/contracts/access/Ownable.sol\";\nimport {Governable} from \"../core/Governable.sol\";\n\n/**\n * @title CECDistributor\n * @dev CECDistributor is a contract for distributing CEC token with unlock time\n * after all data is set, transfer owner to timelock contract\n */\ncontract CECDistributor is ReentrancyGuard, Pausable, Ownable, Governable {\n using SafeERC20 for IERC20;\n\n struct ReleaseInfo {\n uint256 amount;\n uint256 releaseAllMonth;\n uint256 tgeRatio;\n uint256 lockDuration;\n }\n \n mapping(address account => ReleaseInfo info) public infoMap;\n mapping(address account => uint256 amount) public releasedMap;\n\n string public name;\n IERC20 public immutable cecToken;\n uint256 public constant DURATION = 86400 * 30;\n\n uint256 public start = 0;\n uint256 public constant TGE_PRECISION = 1000000;\n uint256 public lockDuration;\n\n event EventInfoUpdated(address indexed account, ReleaseInfo info);\n event EventCECClaimed(address indexed user, address indexed to, uint256 amount);\n event EventChangeAddress(address oldAddr, address newAddr);\n\n \n constructor(\n string memory _name,\n address _cecToken,\n uint256 _start\n ) {\n name = _name;\n cecToken = IERC20(_cecToken);\n start = _start;\n }\n\n /**\n * @dev Throws if called by any account other than the owner or gov.\n */\n modifier ownerOrGov() {\n require(msg.sender == owner() || msg.sender == gov, \"CECDistributor: forbidden\");\n _;\n }\n\n function setGov(address _gov) external override onlyOwner {\n gov = _gov;\n }\n /**\n * @dev update pause state\n * When encountering special circumstances that require an emergency pause of the contract,\n * the pause function can be called by the gov account to quickly pause the contract and minimize losses.\n */\n function pause() external ownerOrGov {\n _pause();\n }\n\n /**\n * @dev update unpause state\n */\n function unpause() external ownerOrGov {\n _unpause();\n }\n\n function withdrawToken(address to, uint256 amount) external onlyOwner {\n cecToken.safeTransfer(to, amount);\n }\n\n function updateInfo(address[] calldata accounts, ReleaseInfo[] calldata infos) external onlyOwner {\n require(accounts.length == infos.length, \"CECDistributor: invalid input\");\n for (uint256 i = 0; i < accounts.length; i++) {\n infoMap[accounts[i]] = infos[i];\n emit EventInfoUpdated(accounts[i], infos[i]);\n }\n }\n\n function calcClaimAmount(address user) public view whenNotPaused returns (uint256) {\n require(infoMap[user].amount > 0, \"CECDistributor: not in whitelist\");\n require(block.timestamp >= start, \"CECDistributor: not in claim time\");\n uint256 claimAmount = 0;\n uint256 tgeAmount = 0;\n ReleaseInfo memory info = infoMap[user];\n if (info.tgeRatio > 0) {\n tgeAmount = ((info.amount * info.tgeRatio) / TGE_PRECISION);\n claimAmount += tgeAmount;\n }\n if (block.timestamp > start + info.lockDuration) {\n uint256 monthNum = (block.timestamp - start - info.lockDuration) / DURATION;\n if (monthNum <= info.releaseAllMonth) {\n claimAmount += (((info.amount - tgeAmount) * monthNum) / info.releaseAllMonth);\n } else {\n claimAmount = info.amount;\n }\n }\n claimAmount -= releasedMap[user];\n return claimAmount;\n }\n\n function claim(address to) external nonReentrant whenNotPaused returns (uint256) {\n require(start > 0, \"CECDistributor: start isn't init\");\n require(to != address(0), \"CECDistributor: invalid address\");\n address _user = _msgSender();\n uint256 amount = calcClaimAmount(_user);\n if (amount > 0) {\n releasedMap[_user] = releasedMap[_user] + amount;\n cecToken.safeTransfer(to, amount);\n emit EventCECClaimed(_user, to, amount);\n }\n return amount;\n }\n\n function changeAddress(address from, address to) external {\n require(infoMap[to].amount == 0, \"CECDistributor: new addr is in whitelist\");\n require(infoMap[from].amount > 0, \"CECDistributor: not in whitelist\");\n address _sender = _msgSender();\n require(_sender == owner() || _sender == from, \"CECDistributor: sender not allowed\");\n infoMap[to] = infoMap[from];\n delete infoMap[from];\n releasedMap[to] = releasedMap[from];\n releasedMap[from] = 0;\n emit EventChangeAddress(from, to);\n }\n}\n" }, "contracts/core/Governable.sol": { "content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.19;\n\ncontract Governable {\n address public gov;\n\n constructor() {\n gov = msg.sender;\n }\n\n modifier onlyGov() {\n require(msg.sender == gov, \"Governable: forbidden\");\n _;\n }\n\n function setGov(address _gov) external virtual onlyGov {\n gov = _gov;\n }\n}\n" diff --git a/simple_abi/CECDistributor.json b/simple_abi/CECDistributor.json new file mode 100644 index 0000000..938f7a8 --- /dev/null +++ b/simple_abi/CECDistributor.json @@ -0,0 +1,30 @@ +[ + "constructor(string,address,uint256)", + "event EventCECClaimed(address indexed,address indexed,uint256)", + "event EventChangeAddress(address,address)", + "event EventInfoUpdated(address indexed,(uint256,uint256,uint256,uint256))", + "event OwnershipTransferred(address indexed,address indexed)", + "event Paused(address)", + "event Unpaused(address)", + "function DURATION() view returns (uint256)", + "function TGE_PRECISION() view returns (uint256)", + "function calcClaimAmount(address) view returns (uint256)", + "function cecToken() view returns (address)", + "function changeAddress(address,address)", + "function claim(address) returns (uint256)", + "function gov() view returns (address)", + "function infoMap(address) view returns (uint256,uint256,uint256,uint256)", + "function lockDuration() view returns (uint256)", + "function name() view returns (string)", + "function owner() view returns (address)", + "function pause()", + "function paused() view returns (bool)", + "function releasedMap(address) view returns (uint256)", + "function renounceOwnership()", + "function setGov(address)", + "function start() view returns (uint256)", + "function transferOwnership(address)", + "function unpause()", + "function updateInfo(address[],(uint256,uint256,uint256,uint256)[])", + "function withdrawToken(address,uint256)" +]