More Info
Private Name Tags
ContractCreator
Multichain Info
No addresses found
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer Ownersh... | 13754620 | 73 days ago | IN | 0 ETH | 0.00000003 |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
fBOMB
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 10000 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: Fantom Bomb, LZ ERC 20 for BOMB/wBOMB on destination chains * @author Max Flow O2 -> @MaxFlowO2 on bird app/GitHub */ // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright 2022 Max Flow O2 * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; import "./Max-20-UUPS-LZ.sol"; import "./lib/Safe20.sol"; import "./lib/20.sol"; import "./lib/Lists.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol"; contract fBOMB is Initializable , Max20ImplementationUUPSLZ , UUPSUpgradeable { using Lib20 for Lib20.Token; using Lists for Lists.Access; using Safe20 for IERC20; /// @custom:oz-upgrades-unsafe-allow constructor constructor() { _disableInitializers(); } function initialize( string memory _name , string memory _symbol , address _admin , address _dev , address _owner ) initializer public { __Max20_init(_name, _symbol, 18, _admin, _dev, _owner); __UUPSUpgradeable_init(); } function _authorizeUpgrade(address newImplementation) internal onlyRole(ADMIN) override {} function addExempt( address newAddress ) external virtual onlyDev() { taxExempt.add(newAddress); } function removeExempt( address newAddress ) external virtual onlyDev() { taxExempt.remove(newAddress); } function addExemptBatch( address[] memory newAddresses ) external virtual onlyDev() { uint len = newAddresses.length; for (uint i = 0; i < len;) { taxExempt.add(newAddresses[i]); unchecked { ++i; } } } function removeExemptBatch( address[] memory newAddresses ) external virtual onlyDev() { uint len = newAddresses.length; for (uint i = 0; i < len;) { taxExempt.remove(newAddresses[i]); unchecked { ++i; } } } /// @dev transfer /// @return success /// @notice Transfers _value amount of tokens to address _to, and MUST fire the Transfer event. /// The function SHOULD throw if the message caller’s account balance does not have enough /// tokens to spend. /// @notice Note Transfers of 0 values MUST be treated as normal transfers and fire the Transfer /// event. function transfer( address _to , uint256 _value ) external virtual override returns (bool success) { uint256 balanceUser = this.balanceOf(msg.sender); if (_to == address(0)) { revert MaxSplaining({ reason: "Max20: to address(0)" }); } else if (_value > balanceUser) { revert MaxSplaining({ reason: "Max20: issuficient balance" }); } else { if (taxExempt.onList(_to) || taxExempt.onList(msg.sender)) { success = token20.doTransfer(msg.sender, _to, _value); emit Transfer(msg.sender, _to, _value); } else { uint256 transValue = _value * 99 / 100; success = token20.doTransfer(msg.sender, _to, transValue); emit Transfer(msg.sender, _to, transValue); token20.burn(msg.sender, _value - transValue); emit Transfer(msg.sender, address(0), _value - transValue); } } } /// @dev transferFrom /// @return success /// @notice The transferFrom method is used for a withdraw workflow, allowing contracts to transfer /// tokens on your behalf. This can be used for example to allow a contract to transfer /// tokens on your behalf and/or to charge fees in sub-currencies. The function SHOULD /// throw unless the _from account has deliberately authorized the sender of the message /// via some mechanism. /// @notice Note Transfers of 0 values MUST be treated as normal transfers and fire the Transfer /// event. function transferFrom( address _from , address _to , uint256 _value ) external virtual override returns (bool success) { uint256 balanceUser = this.balanceOf(_from); uint256 approveBal = this.allowance(_from, msg.sender); if (_from == address(0) || _to == address(0)) { revert MaxSplaining({ reason: "Max20: to/from address(0)" }); } else if (_value > balanceUser) { revert MaxSplaining({ reason: "Max20: issuficient balance" }); } else if (_value > approveBal) { revert MaxSplaining({ reason: "Max20: not approved to spend _value" }); } else { if (taxExempt.onList(_to) || taxExempt.onList(_from)) { success = token20.doTransfer(_from, _to, _value); emit Transfer(_from, _to, _value); token20.setApprove(_from, msg.sender, approveBal - _value); emit Approval(_from, msg.sender, approveBal - _value); } else { uint256 transValue = _value * 99 / 100; success = token20.doTransfer(_from, _to, transValue); emit Transfer(_from, _to, transValue); token20.burn(_from, _value - transValue); emit Transfer(_from, address(0), _value - transValue); token20.setApprove(_from, msg.sender, approveBal - _value); emit Approval(_from, msg.sender, approveBal - _value); } } } /// @dev burn /// @return success /// @notice Burns _value amount of tokens to address _to, and MUST fire the Transfer event. /// The function SHOULD throw if the message caller’s account balance does not have enough /// tokens to burn. /// @notice Note burn of 0 values MUST be treated as normal transfers and fire the Transfer /// event. function burn( uint256 _value ) external virtual returns (bool success) { uint256 balanceUser = this.balanceOf(msg.sender); if (_value > balanceUser) { revert MaxSplaining({ reason: "Max20: issuficient balance" }); } else { token20.burn(msg.sender, _value); success = true; emit Transfer(msg.sender, address(0), _value); } } function setTres( address newAddress ) external virtual onlyDev() { treasury = newAddress; } // @notice This function transfers the ft from your address on the // source chain to the same address on the destination chain // @param _chainId: the uint16 of desination chain (see LZ docs) // @param _amount: amount to be sent function traverseChains( uint16 _chainId , uint256 _amount ) public virtual payable { uint256 userBal = token20.getBalanceOf(msg.sender); if (_amount > userBal) { revert Unauthorized(); } if (trustedRemoteLookup[_chainId].length == 0) { revert MaxSplaining({ reason: "Token: TR not set" }); } // set the amout to burn and send to treasury uint256 onePer = _amount / 100; uint256 toTraverse; // burn FT, eliminating it from circulation on src chain if (taxExempt.onList(msg.sender)) { toTraverse = _amount - onePer; token20.doTransfer(msg.sender, treasury, onePer); emit Transfer(msg.sender, treasury, onePer); token20.burn(msg.sender, toTraverse); emit Transfer(msg.sender, address(0), toTraverse); } else { toTraverse = _amount - (2 * onePer); uint256 toBurn = _amount - onePer; token20.doTransfer(msg.sender, treasury, onePer); emit Transfer(msg.sender, treasury, onePer); token20.burn(msg.sender, toBurn); emit Transfer(msg.sender, address(0), toBurn); } // abi.encode() the payload with the values to send bytes memory payload = abi.encode( msg.sender , toTraverse); // encode adapterParams to specify more gas for the destination uint16 version = 1; bytes memory adapterParams = abi.encodePacked( version , gasForDestinationLzReceive); // get the fees we need to pay to LayerZero + Relayer to cover message delivery // you will be refunded for extra gas paid (uint messageFee, ) = endpoint.estimateFees( _chainId , address(this) , payload , false , adapterParams); // revert this transaction if the fees are not met if (messageFee > msg.value) { revert MaxSplaining({ reason: "Token: message fee low" }); } // send the transaction to the endpoint endpoint.send{value: msg.value}( _chainId, // destination chainId trustedRemoteLookup[_chainId], // destination address of nft contract payload, // abi.encoded()'ed bytes payable(msg.sender), // refund address address(0x0), // 'zroPaymentAddress' unused for this adapterParams // txParameters ); } // @notice just in case this fixed variable limits us from future integrations // @param newVal: new value for gas amount function setGasForDestinationLzReceive( uint newVal ) external onlyDev() { gasForDestinationLzReceive = newVal; } // @notice internal function to mint FT from migration // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function _LzReceive( uint16 _srcChainId , bytes memory _srcAddress , uint64 _nonce , bytes memory _payload ) override internal { // decode (address toAddr, uint256 amount) = abi.decode(_payload, (address, uint256)); // mint the tokens back into existence on destination chain token20.mint(toAddr, amount); emit Transfer(address(0), toAddr, amount); } // @notice will return gas value for LZ // @return: uint for gas value function currentLZGas() external view returns (uint256) { return gasForDestinationLzReceive; } }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: [Not an EIP]: MaxFlow's 173/Dev/Roles Interface * @author: Max Flow O2 -> @MaxFlowO2 on bird app/GitHub * @notice Interface for MaxAccess */ // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright 2022 Max Flow O2 * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; import "./IMAX173.sol"; import "./IMAXDEV.sol"; import "./IRoles.sol"; interface MaxAccess is IMAX173 , IMAXDEV , IRoles { ///@dev this just imports all 3 and pushes to Implementation }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: [Not an EIP]: Contract Roles Standard * @author: Max Flow O2 -> @MaxFlowO2 on bird app/GitHub * @notice Interface for MaxAccess version of Roles */ // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright 2022 Max Flow O2 * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; import "../../eip/165/IERC165.sol"; interface IRoles is IERC165 { /// @dev Returns `true` if `account` has been granted `role`. /// @param role: Bytes4 of a role /// @param account: Address to check /// @return bool true/false if account has role function hasRole( bytes4 role , address account ) external view returns (bool); /// @dev Returns the admin role that controls a role /// @param role: Role to check /// @return admin role function getRoleAdmin( bytes4 role ) external view returns (bytes4); /// @dev Grants `role` to `account` /// @param role: Bytes4 of a role /// @param account: account to give role to function grantRole( bytes4 role , address account ) external; /// @dev Revokes `role` from `account` /// @param role: Bytes4 of a role /// @param account: account to revoke role from function revokeRole( bytes4 role , address account ) external; /// @dev Renounces `role` from `account` /// @param role: Bytes4 of a role function renounceRole( bytes4 role ) external; }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: [Not an EIP]: Contract Developer Standard * @author: Max Flow O2 -> @MaxFlowO2 on bird app/GitHub * @notice Interface for onlyDev() role */ // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright 2022 Max Flow O2 * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; import "../../eip/165/IERC165.sol"; interface IMAXDEV is IERC165 { /// @dev Classic "EIP-173" but for onlyDev() /// @return Developer of contract function developer() external view returns (address); /// @dev This renounces your role as onlyDev() function renounceDeveloper() external; /// @dev Classic "EIP-173" but for onlyDev() /// @param newDeveloper: addres of new pending Developer role function transferDeveloper( address newDeveloper ) external; /// @dev This accepts the push-pull method of onlyDev() function acceptDeveloper() external; /// @dev This declines the push-pull method of onlyDev() function declineDeveloper() external; /// @dev This starts the push-pull method of onlyDev() /// @param newDeveloper: addres of new pending developer role function pushDeveloper( address newDeveloper ) external; }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: EIP-173: Contract Ownership Standard, MaxFlowO2's extension * @author: Max Flow O2 -> @MaxFlowO2 on bird app/GitHub * @notice Interface for enhancing EIP-173 * @custom:change-log UUPS Upgradable */ // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright 2022 Max Flow O2 * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; import "../../eip/173/IERC173.sol"; interface IMAX173 is IERC173 { /// @dev This is the classic "EIP-173" method of renouncing onlyOwner() function renounceOwnership() external; /// @dev This accepts the push-pull method of onlyOwner() function acceptOwnership() external; /// @dev This declines the push-pull method of onlyOwner() function declineOwnership() external; /// @dev This starts the push-pull method of onlyOwner() /// @param newOwner: addres of new pending owner role function pushOwnership( address newOwner ) external; }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: ILayerZeroUserApplicationConfig.sol * @author: LayerZero * @notice Interface for LayerZeroUserApplicationConfig * OG Source: https://etherscan.io/address/0xa74ae2c6fca0cedbaef30a8ceef834b247186bcf#code */ // SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface ILayerZeroUserApplicationConfig { // @notice set the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig( uint16 _version , uint16 _chainId , uint _configType , bytes calldata _config ) external; // @notice set the send() LayerZero messaging library version to _version // @param _version - new messaging library version function setSendVersion( uint16 _version ) external; // @notice set the lzReceive() LayerZero messaging library version to _version // @param _version - new messaging library version function setReceiveVersion( uint16 _version ) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive( uint16 _srcChainId , bytes calldata _srcAddress ) external; }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: ILayerZeroReceiver.sol * @author: LayerZero * @notice Interface for LayerZeroReceiver * OG Source: https://etherscan.io/address/0xa74ae2c6fca0cedbaef30a8ceef834b247186bcf#code */ // SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface ILayerZeroReceiver { // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive( uint16 _srcChainId , bytes calldata _srcAddress , uint64 _nonce , bytes calldata _payload ) external; }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: ILayerZeroEndpoint.sol * @author: LayerZero * @notice Interface for LayerZeroEndpoint * OG Source: https://etherscan.io/address/0xa74ae2c6fca0cedbaef30a8ceef834b247186bcf#code */ // SPDX-License-Identifier: MIT pragma solidity >=0.5.0; import "./ILayerZeroUserApplicationConfig.sol"; interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig { // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function send( uint16 _dstChainId , bytes calldata _destination , bytes calldata _payload , address payable _refundAddress , address _zroPaymentAddress , bytes calldata _adapterParams ) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload( uint16 _srcChainId , bytes calldata _srcAddress , address _dstAddress , uint64 _nonce , uint _gasLimit , bytes calldata _payload ) external; // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce( uint16 _srcChainId , bytes calldata _srcAddress ) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce( uint16 _dstChainId , address _srcAddress ) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over LayerZero // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees( uint16 _dstChainId , address _userApplication , bytes calldata _payload , bool _payInZRO , bytes calldata _adapterParam ) external view returns ( uint nativeFee , uint zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload( uint16 _srcChainId , bytes calldata _srcAddress , bytes calldata _payload ) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload( uint16 _srcChainId , bytes calldata _srcAddress ) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress( address _userApplication ) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress( address _userApplication ) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig( uint16 _version , uint16 _chainId , address _userApplication , uint _configType ) external view returns (bytes memory); // @notice get the send() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getSendVersion( address _userApplication ) external view returns (uint16); // @notice get the lzReceive() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion( address _userApplication ) external view returns (uint16); }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: [Not an EIP] Safe ERC 20 Library * @author: Max Flow O2 -> @MaxFlowO2 on bird app/GitHub * @notice Library makes use of bool success on transfer, transferFrom and approve of EIP 20 */ // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright 2022 Max Flow O2 * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >= 0.8.0 < 0.9.0; import "../eip/20/IERC20.sol"; library Safe20 { error MaxSplaining(string reason); function safeTransfer( IERC20 token , address to , uint256 amount ) internal { if (!token.transfer(to, amount)) { revert MaxSplaining({ reason: "Safe20: token.transfer failed" }); } } function safeTransferFrom( IERC20 token , address from , address to , uint256 amount ) internal { if (!token.transferFrom(from, to, amount)) { revert MaxSplaining({ reason: "Safe20: token.transferFrom failed" }); } } function safeApprove( IERC20 token , address spender , uint256 amount ) internal { if (!token.approve(spender, amount)) { revert MaxSplaining({ reason: "Safe20: token.approve failed" }); } } }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: Roles.sol * @author: Max Flow O2 -> @MaxFlowO2 on bird app/GitHub * @notice Library for MaxAcess.sol * @custom:error-code Roles:1 User has role already * @custom:error-code Roles:2 User does not have role to revoke * @custom:change-log custom errors added above * @custom:change-log cleaned up variables * @custom:change-log internal -> internal/internal * * Include with 'using Roles for Roles.Role;' */ // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright 2022 Max Flow O2 * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; library Roles { bytes4 constant internal DEVS = 0xca4b208b; bytes4 constant internal OWNERS = 0x8da5cb5b; bytes4 constant internal ADMIN = 0xf851a440; struct Role { mapping(address => mapping(bytes4 => bool)) bearer; address owner; address developer; address admin; } event RoleChanged(bytes4 _role, address _user, bool _status); event AdminTransferred(address indexed previousAdmin, address indexed newAdmin); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event DeveloperTransferred(address indexed previousDeveloper, address indexed newDeveloper); error Unauthorized(); error MaxSplaining(string reason); function add( Role storage role , bytes4 userRole , address account ) internal { if (account == address(0)) { revert Unauthorized(); } else if (has(role, userRole, account)) { revert MaxSplaining({ reason: "Roles:1" }); } role.bearer[account][userRole] = true; emit RoleChanged(userRole, account, true); } function remove( Role storage role , bytes4 userRole , address account ) internal { if (account == address(0)) { revert Unauthorized(); } else if (!has(role, userRole, account)) { revert MaxSplaining({ reason: "Roles:2" }); } role.bearer[account][userRole] = false; emit RoleChanged(userRole, account, false); } function has( Role storage role , bytes4 userRole , address account ) internal view returns (bool) { if (account == address(0)) { revert Unauthorized(); } return role.bearer[account][userRole]; } function setAdmin( Role storage role , address account ) internal { if (has(role, ADMIN, account)) { address old = role.admin; role.admin = account; emit AdminTransferred(old, role.admin); } else if (account == address(0)) { address old = role.admin; role.admin = account; emit AdminTransferred(old, role.admin); } else { revert Unauthorized(); } } function setDeveloper( Role storage role , address account ) internal { if (has(role, DEVS, account)) { address old = role.developer; role.developer = account; emit DeveloperTransferred(old, role.developer); } else if (account == address(0)) { address old = role.admin; role.admin = account; emit AdminTransferred(old, role.admin); } else { revert Unauthorized(); } } function setOwner( Role storage role , address account ) internal { if (has(role, OWNERS, account)) { address old = role.owner; role.owner = account; emit OwnershipTransferred(old, role.owner); } else if (account == address(0)) { address old = role.admin; role.admin = account; emit AdminTransferred(old, role.admin); } else { revert Unauthorized(); } } function getAdmin( Role storage role ) internal view returns (address) { return role.admin; } function getDeveloper( Role storage role ) internal view returns (address) { return role.developer; } function getOwner( Role storage role ) internal view returns (address) { return role.owner; } }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: [Not an EIP]: Access lists * @author: @MaxFlowO2 on bird app/GitHub * @notice Formerly whitelists, now allowlist, or whatever it's called. * @custom:change-log removed end variable/functions (un-needed) * @custom:change-log variables renamed from lib whitelist * @custom:change-log internal -> internal * @custom:error-code Lists:1 "(user) is already whitelisted." * @custom:error-code Lists:2 "(user) is not whitelisted." * @custom:error-code Lists:3 "Whitelist already enabled." * @custom:error-code Lists:4 "Whitelist already disabled." * @custom:change-log added custom error codes * @custom:change-log removed import "./Strings.sol"; (un-needed) * * Include with 'using Lists for Lists.Access;' */ // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright 2022 Max Flow O2 * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; import "./CountersV2.sol"; library Lists { using CountersV2 for CountersV2.Counter; event ListChanged(bool _old, bool _new, address _address); event ListStatus(bool _old, bool _new); error MaxSplaining(string reason); struct Access { bool _status; CountersV2.Counter added; CountersV2.Counter removed; mapping(address => bool) allowed; } function add( Access storage list , address user ) internal { if (list.allowed[user]) { revert MaxSplaining({ reason : "Lists:1" }); } // since now all previous values are false no need for another variable // and add them to the list! list.allowed[user] = true; // increment counter list.added.increment(); // emit event emit ListChanged(false, list.allowed[user], user); } function remove( Access storage list , address user ) internal { if (!list.allowed[user]) { revert MaxSplaining({ reason : "Lists:2" }); } // since now all previous values are true no need for another variable // and remove them from the list! list.allowed[user] = false; // increment counter list.removed.increment(); // emit event emit ListChanged(true, list.allowed[user], user); } function enable( Access storage list ) internal { if (list._status) { revert MaxSplaining({ reason : "Lists:3" }); } list._status = true; emit ListStatus(false, list._status); } function disable( Access storage list ) internal { if (!list._status) { revert MaxSplaining({ reason : "Lists:4" }); } list._status = false; emit ListStatus(true, list._status); } function status( Access storage list ) internal view returns (bool) { return list._status; } function totalAdded( Access storage list ) internal view returns (uint) { return list.added.current(); } function totalRemoved( Access storage list ) internal view returns (uint) { return list.removed.current(); } function onList( Access storage list , address user ) internal view returns (bool) { return list.allowed[user]; } }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: CountersV2.sol * @author Matt Condon (@shrugs) * @notice Provides counters that can only be incremented, decremented, reset or set. * This can be used e.g. to track the number of elements in a mapping, issuing ERC721 ids * or counting request ids. * @custom:change-log MIT -> Apache-2.0 * @custom:change-log Edited for more NFT functionality added .set(uint) * @custom:change-log added event CounterNumberChangedTo(uint _number). * @custom:change-log added error MaxSplaining(string reason). * @custom:change-log internal -> internal functions * @custom:error-code CountersV2:1 "No negatives in uints" - overflow protection * * Include with `using CountersV2 for CountersV2.Counter;` */ // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright 2022 Max Flow O2 * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; library CountersV2 { struct Counter { uint256 value; } event CounterNumberChangedTo(uint _number); error MaxSplaining(string reason); function current( Counter storage counter ) internal view returns (uint256) { return counter.value; } function increment( Counter storage counter ) internal { unchecked { ++counter.value; } } function decrement( Counter storage counter ) internal { if (counter.value == 0) { revert MaxSplaining({ reason : "CountersV2:1" }); } unchecked { --counter.value; } } function reset( Counter storage counter ) internal { counter.value = 0; emit CounterNumberChangedTo(counter.value); } function set( Counter storage counter , uint number ) internal { counter.value = number; emit CounterNumberChangedTo(counter.value); } }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: Library 20 * @author: Max Flow O2 -> @MaxFlowO2 on bird app/GitHub * @notice Library for EIP 20 * @custom:change-log Custom errors added above * * Include with 'using Lib20 for Lib20.Token;' */ // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright 2022 Max Flow O2 * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; library Lib20 { struct Token { mapping(address => uint256) balances; mapping(address => mapping(address => uint256)) allowances; uint256 totalSupply; uint8 decimals; string name; string symbol; } error MaxSplaining(string reason); function setName( Token storage token , string memory newName ) internal { token.name = newName; } function getName( Token storage token ) internal view returns (string memory) { return token.name; } function setSymbol( Token storage token , string memory newSymbol ) internal { token.symbol = newSymbol; } function getSymbol( Token storage token ) internal view returns (string memory) { return token.symbol; } function setDecimals( Token storage token , uint8 newDecimals ) internal { token.decimals = newDecimals; } function getDecimals( Token storage token ) internal view returns (uint8) { return token.decimals; } function getTotalSupply( Token storage token ) internal view returns (uint256) { return token.totalSupply; } function getBalanceOf( Token storage token , address owner ) internal view returns (uint256) { return token.balances[owner]; } function doTransfer( Token storage token , address from , address to , uint256 value ) internal returns (bool success) { uint256 fromBal = getBalanceOf(token, from); if (value > fromBal) { revert MaxSplaining({ reason: "Max20:1" }); } unchecked { token.balances[from] -= value; token.balances[to] += value; } return true; } function getAllowance( Token storage token , address owner , address spender ) internal view returns (uint256) { return token.allowances[owner][spender]; } function setApprove( Token storage token , address owner , address spender , uint256 amount ) internal returns (bool) { token.allowances[owner][spender] = amount; return true; } function mint( Token storage token , address account , uint256 amount ) internal { if (account == address(0)) { revert MaxSplaining({ reason: "Max20:2" }); } token.totalSupply += amount; unchecked { token.balances[account] += amount; } } function burn( Token storage token , address account , uint256 amount ) internal { uint256 accountBal = getBalanceOf(token, account); if (amount > accountBal) { revert MaxSplaining({ reason: "Max20:1" }); } unchecked { token.balances[account] = accountBal - amount; token.totalSupply -= amount; } } }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: [Not an EIP]: MaxErrors, so I can import errors, anywhere minus libraries * @author: Max Flow O2 -> @MaxFlowO2 on bird app/GitHub * @notice Does not have an ERC165 return since no external/public functions * @custom:change-log abstract contract -> interface */ // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright 2022 Max Flow O2 * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; interface MaxErrors { /// @dev this is Unauthorized(), basically a catch all, zero description /// @notice 0x82b42900 bytes4 of this error Unauthorized(); /// @dev this is MaxSplaining(), giving you a reason, aka require(param, "reason") /// @param reason: Use the "Contract name: error" /// @notice 0x0661b792 bytes4 of this error MaxSplaining( string reason ); /// @dev this is TooSoonJunior(), using times /// @param yourTime: should almost always be block.timestamp /// @param hitTime: the time you should have started /// @notice 0xf3f82ac5 bytes4 of this error TooSoonJunior( uint yourTime , uint hitTime ); /// @dev this is TooLateBoomer(), using times /// @param yourTime: should almost always be block.timestamp /// @param hitTime: the time you should have ended /// @notice 0x43c540ef bytes4 of this error TooLateBoomer( uint yourTime , uint hitTime ); }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: EIP-20: Token Standard, extension * @author: Unknown * @notice n/a * @custom:change-log backwards compatability to EIP 165 added * @custom:change-log MIT -> Apache-2.0 // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright and related rights waived via CC0. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; import "../165/IERC165.sol"; interface IERC20Burn is IERC165 { /// @dev to burn ERC20 tokens /// @param amount uint256 amount of tokens to burn function burn( uint256 amount ) external; function deposit(uint256 amount) external returns (bool); function withdraw(uint256 amount) external returns (bool); }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: EIP-20: Token Standard * @author: Fabian Vogelsteller, Vitalik Buterin * @notice The following standard allows for the implementation of a standard API for tokens within * smart contracts. This standard provides basic functionality to transfer tokens, as well * as allow tokens to be approved so they can be spent by another on-chain third party. * @custom:source https://eips.ethereum.org/EIPS/eip-20 * @custom:change-log external -> external, string -> string memory (0.8.x) * @custom:change-log readability enhanced * @custom:change-log backwards compatability to EIP 165 added * @custom:change-log MIT -> Apache-2.0 // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright and related rights waived via CC0. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; import "../165/IERC165.sol"; interface IERC20 is IERC165 { /// @dev Transfer Event /// @notice MUST trigger when tokens are transferred, including zero value transfers. /// @notice A token contract which creates new tokens SHOULD trigger a Transfer event /// with the _from address set to 0x0 when tokens are created. event Transfer(address indexed _from, address indexed _to, uint256 _value); /// @dev Approval Event /// @notice MUST trigger on any successful call to approve(address _spender, uint256 _value). event Approval(address indexed _owner, address indexed _spender, uint256 _value); /// @dev OPTIONAL - This method can be used to improve usability, but interfaces and other /// contracts MUST NOT expect these values to be present. /// @return string memory returns the name of the token - e.g. "MyToken". function name() external view returns (string memory); /// @dev OPTIONAL - This method can be used to improve usability, but interfaces and other /// contracts MUST NOT expect these values to be present. /// @return string memory returns the symbol of the token. E.g. “HIX”. function symbol() external view returns (string memory); /// @dev OPTIONAL - This method can be used to improve usability, but interfaces and other /// contracts MUST NOT expect these values to be present. /// @return uint8 returns the number of decimals the token uses - e.g. 8, means to divide the /// token amount by 100000000 to get its user representation. function decimals() external view returns (uint8); /// @dev totalSupply /// @return uint256 returns the total token supply. function totalSupply() external view returns (uint256); /// @dev balanceOf /// @return balance returns the account balance of another account with address _owner. function balanceOf( address _owner ) external view returns (uint256 balance); /// @dev transfer /// @return success /// @notice Transfers _value amount of tokens to address _to, and MUST fire the Transfer event. /// The function SHOULD throw if the message caller’s account balance does not have enough /// tokens to spend. /// @notice Note Transfers of 0 values MUST be treated as normal transfers and fire the Transfer /// event. function transfer( address _to , uint256 _value ) external returns (bool success); /// @dev transferFrom /// @return success /// @notice The transferFrom method is used for a withdraw workflow, allowing contracts to transfer /// tokens on your behalf. This can be used for example to allow a contract to transfer /// tokens on your behalf and/or to charge fees in sub-currencies. The function SHOULD /// throw unless the _from account has deliberately authorized the sender of the message /// via some mechanism. /// @notice Note Transfers of 0 values MUST be treated as normal transfers and fire the Transfer /// event. function transferFrom( address _from , address _to , uint256 _value ) external returns (bool success); /// @dev approve /// @return success /// @notice Allows _spender to withdraw from your account multiple times, up to the _value amount. /// If this function is called again it overwrites the current allowance with _value. /// @notice To prevent attack vectors like the one described here and discussed here, clients /// SHOULD make sure to create user interfaces in such a way that they set the allowance /// first to 0 before setting it to another value for the same spender. THOUGH The contract /// itself shouldn’t enforce it, to allow backwards compatibility with contracts deployed /// before function approve( address _spender , uint256 _value ) external returns (bool success); /// @dev allowance /// @return remaining uint256 of allowance remaining /// @notice Returns the amount which _spender is still allowed to withdraw from _owner. function allowance( address _owner , address _spender ) external view returns (uint256 remaining); }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: EIP-173: Contract Ownership Standard * @author: Nick Mudge, Dan Finlay * @notice This specification defines standard functions for owning or controlling a contract. * the ERC-165 identifier for this interface is 0x7f5828d0 * @custom:URI https://eips.ethereum.org/EIPS/eip-173 * @custom:change-log MIT -> Apache-2.0 * @custom:change-log readability modification */ // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright and related rights waived via CC0. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; import "../../eip/165/IERC165.sol"; interface IERC173 is IERC165 { /// @dev This emits when ownership of a contract changes. event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /// @notice Get the address of the owner /// @return The address of the owner. function owner() view external returns(address); /// @notice Set the address of the new owner of the contract /// @dev Set _newOwner to address(0) to renounce any ownership. /// @param _newOwner The address of the new owner of the contract function transferOwnership( address _newOwner ) external; }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title: EIP-165: Standard Interface Detection * @author: Christian Reitwießner, Nick Johnson, Fabian Vogelsteller, Jordi Baylina, Konrad Feldmeier, William Entriken * @notice Creates a standard method to publish and detect what interfaces a smart contract implements. * @custom:source https://eips.ethereum.org/EIPS/eip-165 * @custom:change-log interface ERC165 -> interface IERC165 * @custom:change-log readability enhanced * @custom:change-log MIT -> Apache-2.0 // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright and related rights waived via CC0. * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; interface IERC165 { /// @notice Query if a contract implements an interface /// @param interfaceID The interface identifier, as specified in ERC-165 /// @notice Interface identification is specified in ERC-165. This function /// uses less than 30,000 gas. /// @return `true` if the contract implements `interfaceID` and /// `interfaceID` is not 0xffffffff, `false` otherwise function supportsInterface( bytes4 interfaceID ) external view returns (bool); }
/* +%%#- ##. =+. .+#%#+: *%%#: .**+- =+ * .%@@*#*: @@: *%- #%*= .*@@=. =%. .%@@*%* +@@=+=% .%## * .%@@- -=+ *@% :@@- #@=# -@@* +@- :@@@: ==* -%%. *** #@=* * %@@: -.* :. +@@-.#@# =@%#. :. -@* :@@@. -:# .%. *@# *@#* * *%@- +++ +@#.-- .*%*. .#@@*@# %@@%*#@@: .@@=-. -%- #%@: +*- =*@* -@%=: * @@% =## +@@#-..%%:%.-@@=-@@+ .. +@% #@#*+@: .*= @@% =#* -*. +#. %@#+*@ * @@# +@* #@# +@@. -+@@+#*@% =#: #@= :@@-.%# -=. : @@# .*@* =@= :*@:=@@-:@+ * -#%+@#- :@#@@+%++@*@*:=%+..%%#= *@ *@++##. =%@%@%%#- =#%+@#- :*+**+=: %%++%* * * @title Max-20-UUPS-LZ-Implementation * @author Max Flow O2 -> @MaxFlowO2 on bird app/GitHub * @notice */ // SPDX-License-Identifier: Apache-2.0 /****************************************************************************** * Copyright 2022 Max Flow O2 * * * * Licensed under the Apache License, Version 2.0 (the "License"); * * you may not use this file except in compliance with the License. * * You may obtain a copy of the License at * * * * http://www.apache.org/licenses/LICENSE-2.0 * * * * Unless required by applicable law or agreed to in writing, software * * distributed under the License is distributed on an "AS IS" BASIS, * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * See the License for the specific language governing permissions and * * limitations under the License. * ******************************************************************************/ pragma solidity >=0.8.0 <0.9.0; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol"; import "./eip/20/IERC20.sol"; import "./eip/20/IERC20Burn.sol"; import "./lib/Safe20.sol"; import "./lib/20.sol"; import "./modules/access/MaxAccess.sol"; import "./lib/Roles.sol"; import "./lib/Lists.sol"; import "./lz/ILayerZeroReceiver.sol"; import "./lz/ILayerZeroEndpoint.sol"; import "./errors/MaxErrors.sol"; abstract contract Max20ImplementationUUPSLZ is Initializable , MaxErrors , MaxAccess , ILayerZeroReceiver , IERC20 { ////////////////////////////////////// // Storage ////////////////////////////////////// using Lib20 for Lib20.Token; using Lists for Lists.Access; using Roles for Roles.Role; using Safe20 for IERC20; Lib20.Token internal token20; Roles.Role internal contractRoles; Lists.Access internal taxExempt; bytes4 constant internal DEVS = 0xca4b208b; bytes4 constant internal PENDING_DEVS = 0xca4b208a; // DEVS - 1 bytes4 constant internal OWNERS = 0x8da5cb5b; bytes4 constant internal PENDING_OWNERS = 0x8da5cb5a; // OWNERS - 1 bytes4 constant internal ADMIN = 0xf851a440; address internal Token; address internal WToken; address internal treasury; ////////////////////////////////////// // LayerZero Storage ////////////////////////////////////// ILayerZeroEndpoint internal endpoint; struct FailedMessages { uint payloadLength; bytes32 payloadHash; } mapping(uint16 => mapping(bytes => mapping(uint => FailedMessages))) public failedMessages; mapping(uint16 => bytes) public trustedRemoteLookup; uint256 internal gasForDestinationLzReceive; event TrustedRemoteSet(uint16 _chainId, bytes _trustedRemote); event EndpointSet(address indexed _endpoint); event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload); /////////////////////// // MAX-20: Modifiers /////////////////////// modifier onlyRole(bytes4 role) { if (contractRoles.has(role, msg.sender) || contractRoles.has(ADMIN, msg.sender)) { _; } else { revert Unauthorized(); } } modifier onlyOwner() { if (contractRoles.has(OWNERS, msg.sender)) { _; } else { revert Unauthorized(); } } modifier onlyDev() { if (contractRoles.has(DEVS, msg.sender)) { _; } else { revert Unauthorized(); } } /////////////////////// /// MAX-20: Internals /////////////////////// function __Max20_init( string memory _name , string memory _symbol , uint8 _decimals , address _admin , address _dev , address _owner ) internal onlyInitializing() { token20.setName(_name); token20.setSymbol(_symbol); token20.setDecimals(_decimals); contractRoles.add(ADMIN, _admin); contractRoles.setAdmin(_admin); contractRoles.add(DEVS, _dev); contractRoles.setDeveloper(_dev); contractRoles.add(OWNERS, _owner); contractRoles.setOwner(_owner); } ////////////////////////// // EIP-20: Token Standard ////////////////////////// /// @dev OPTIONAL - This method can be used to improve usability, but interfaces and other /// contracts MUST NOT expect these values to be present. /// @return string memory returns the name of the token - e.g. "MyToken". function name() external view virtual override returns (string memory) { return token20.getName(); } /// @dev OPTIONAL - This method can be used to improve usability, but interfaces and other /// contracts MUST NOT expect these values to be present. /// @return string memory returns the symbol of the token. E.g. “HIX”. function symbol() external view virtual override returns (string memory) { return token20.getSymbol(); } /// @dev OPTIONAL - This method can be used to improve usability, but interfaces and other /// contracts MUST NOT expect these values to be present. /// @return uint8 returns the number of decimals the token uses - e.g. 8, means to divide the /// token amount by 100000000 to get its user representation. function decimals() external view virtual override returns (uint8) { return token20.getDecimals(); } /// @dev totalSupply /// @return uint256 returns the total token supply. function totalSupply() external view virtual override returns (uint256) { return token20.getTotalSupply(); } /// @dev balanceOf /// @return balance returns the account balance of another account with address _owner. function balanceOf( address _owner ) external view virtual override returns (uint256 balance) { balance = token20.getBalanceOf(_owner); } /// @dev transfer /// @return success /// @notice Transfers _value amount of tokens to address _to, and MUST fire the Transfer event. /// The function SHOULD throw if the message caller’s account balance does not have enough /// tokens to spend. /// @notice Note Transfers of 0 values MUST be treated as normal transfers and fire the Transfer /// event. function transfer( address _to , uint256 _value ) external virtual override returns (bool success) { if (_to == address(0)) { revert MaxSplaining({ reason: "Max20: to address(0)" }); } else { success = token20.doTransfer(msg.sender, _to, _value); emit Transfer(msg.sender, _to, _value); } } /// @dev transferFrom /// @return success /// @notice The transferFrom method is used for a withdraw workflow, allowing contracts to transfer /// tokens on your behalf. This can be used for example to allow a contract to transfer /// tokens on your behalf and/or to charge fees in sub-currencies. The function SHOULD /// throw unless the _from account has deliberately authorized the sender of the message /// via some mechanism. /// @notice Note Transfers of 0 values MUST be treated as normal transfers and fire the Transfer /// event. function transferFrom( address _from , address _to , uint256 _value ) external virtual override returns (bool success) { uint256 approveBal = this.allowance(_from, msg.sender); if (_from == address(0) || _to == address(0)) { revert MaxSplaining({ reason: "Max20: to/from address(0)" }); } else if (approveBal >= _value) { revert MaxSplaining({ reason: "Max20: not approved to spend _value" }); } else { success = token20.doTransfer(_from, _to, _value); emit Transfer(_from, _to, _value); } } /// @dev approve /// @return success /// @notice Allows _spender to withdraw from your account multiple times, up to the _value amount. /// If this function is called again it overwrites the current allowance with _value. /// @notice To prevent attack vectors like the one described here and discussed here, clients /// SHOULD make sure to create user interfaces in such a way that they set the allowance /// first to 0 before setting it to another value for the same spender. THOUGH The contract /// itself shouldn’t enforce it, to allow backwards compatibility with contracts deployed /// before function approve( address _spender , uint256 _value ) external virtual override returns (bool success) { success = token20.setApprove(msg.sender, _spender, _value); emit Approval(msg.sender, _spender, _value); } /// @dev allowance /// @return remaining uint256 of allowance remaining /// @notice Returns the amount which _spender is still allowed to withdraw from _owner. function allowance( address _owner , address _spender ) external view virtual override returns (uint256 remaining) { return token20.getAllowance(_owner, _spender); } /////////////////// /// LayerZero: NBR /////////////////// // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive( uint16 _srcChainId , bytes memory _srcAddress , uint64 _nonce , bytes memory _payload ) external override { if (msg.sender != address(endpoint)) { revert MaxSplaining({ reason: "NBR:1" }); } if ( _srcAddress.length != trustedRemoteLookup[_srcChainId].length || keccak256(_srcAddress) != keccak256(trustedRemoteLookup[_srcChainId]) ) { revert MaxSplaining({ reason: "NBR:2" }); } // try-catch all errors/exceptions // having failed messages does not block messages passing try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) { // do nothing } catch { // error or exception failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(_payload.length, keccak256(_payload)); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload); } } // @notice this is the catch all above (should be an internal?) // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function onLzReceive( uint16 _srcChainId , bytes memory _srcAddress , uint64 _nonce , bytes memory _payload ) public { // only internal transaction if (msg.sender != address(this)) { revert MaxSplaining({ reason: "NBR:3" }); } // handle incoming message _LzReceive( _srcChainId, _srcAddress, _nonce, _payload); } // @notice internal function to do something in the main contract // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function _LzReceive( uint16 _srcChainId , bytes memory _srcAddress , uint64 _nonce , bytes memory _payload ) virtual internal; // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function _lzSend( uint16 _dstChainId , bytes memory _payload , address payable _refundAddress , address _zroPaymentAddress , bytes memory _txParam ) internal { endpoint.send{value: msg.value}( _dstChainId , trustedRemoteLookup[_dstChainId] , _payload, _refundAddress , _zroPaymentAddress , _txParam); } // @notice this is to retry a failed message on LayerZero // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _nonce - the ordered message nonce // @param _payload - the payload to be retried function retryMessage( uint16 _srcChainId , bytes memory _srcAddress , uint64 _nonce , bytes calldata _payload ) external payable { // assert there is message to retry FailedMessages storage failedMsg = failedMessages[_srcChainId][_srcAddress][_nonce]; if (failedMsg.payloadHash == bytes32(0)) { revert MaxSplaining({ reason: "NBR:4" }); } if ( _payload.length != failedMsg.payloadLength || keccak256(_payload) != failedMsg.payloadHash ) { revert MaxSplaining({ reason: "NBR:5" }); } // clear the stored message failedMsg.payloadLength = 0; failedMsg.payloadHash = bytes32(0); // execute the message. revert if it fails again this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } // @notice this is to set all valid incoming messages // @param _srcChainId - the source chain identifier // @param _trustedRemote - the source chain contract address function setTrustedRemote( uint16 _chainId , bytes calldata _trustedRemote ) external onlyDev() { trustedRemoteLookup[_chainId] = _trustedRemote; emit TrustedRemoteSet(_chainId, _trustedRemote); } // @notice this is to set all valid incoming messages // @param _srcChainId - the source chain identifier // @param _trustedRemote - the source chain contract address function setEndPoint( address newEndpoint ) external onlyDev() { endpoint = ILayerZeroEndpoint(newEndpoint); emit EndpointSet(newEndpoint); } ///////////////////////////////////////// /// EIP-173: Contract Ownership Standard ///////////////////////////////////////// /// @notice Get the address of the owner /// @return The address of the owner. function owner() view external returns(address) { return contractRoles.getOwner(); } /// @notice Set the address of the new owner of the contract /// @dev Set _newOwner to address(0) to renounce any ownership. /// @param _newOwner The address of the new owner of the contract function transferOwnership( address _newOwner ) external onlyRole(OWNERS) { contractRoles.add(OWNERS, _newOwner); contractRoles.setOwner(_newOwner); contractRoles.remove(OWNERS, msg.sender); } //////////////////////////////////////////////////////////////// /// EIP-173: Contract Ownership Standard, MaxFlowO2's extension //////////////////////////////////////////////////////////////// /// @dev This is the classic "EIP-173" method of renouncing onlyOwner() function renounceOwnership() external onlyRole(OWNERS) { contractRoles.setOwner(address(0)); contractRoles.remove(OWNERS, msg.sender); } /// @dev This accepts the push-pull method of onlyOwner() function acceptOwnership() external onlyRole(PENDING_OWNERS) { contractRoles.add(OWNERS, msg.sender); contractRoles.setOwner(msg.sender); contractRoles.remove(PENDING_OWNERS, msg.sender); } /// @dev This declines the push-pull method of onlyOwner() function declineOwnership() external onlyRole(PENDING_OWNERS) { contractRoles.remove(PENDING_OWNERS, msg.sender); } /// @dev This starts the push-pull method of onlyOwner() /// @param newOwner: addres of new pending owner role function pushOwnership( address newOwner ) external onlyRole(OWNERS) { contractRoles.add(PENDING_OWNERS, newOwner); } ////////////////////////////////////////////// /// [Not an EIP]: Contract Developer Standard ////////////////////////////////////////////// /// @dev Classic "EIP-173" but for onlyDev() /// @return Developer of contract function developer() external view returns (address) { return contractRoles.getDeveloper(); } /// @dev This renounces your role as onlyDev() function renounceDeveloper() external onlyRole(DEVS) { contractRoles.setDeveloper(address(0)); contractRoles.remove(DEVS, msg.sender); } /// @dev Classic "EIP-173" but for onlyDev() /// @param newDeveloper: addres of new pending Developer role function transferDeveloper( address newDeveloper ) external onlyRole(DEVS) { contractRoles.add(DEVS, newDeveloper); contractRoles.setDeveloper(newDeveloper); contractRoles.remove(DEVS, msg.sender); } /// @dev This accepts the push-pull method of onlyDev() function acceptDeveloper() external onlyRole(PENDING_DEVS) { contractRoles.add(DEVS, msg.sender); contractRoles.setDeveloper(msg.sender); contractRoles.remove(PENDING_DEVS, msg.sender); } /// @dev This declines the push-pull method of onlyDev() function declineDeveloper() external onlyRole(PENDING_DEVS) { contractRoles.remove(PENDING_DEVS, msg.sender); } /// @dev This starts the push-pull method of onlyDev() /// @param newDeveloper: addres of new pending developer role function pushDeveloper( address newDeveloper ) external onlyRole(DEVS) { contractRoles.add(PENDING_DEVS, newDeveloper); } ////////////////////////////////////////// /// [Not an EIP]: Contract Roles Standard ////////////////////////////////////////// /// @dev Returns `true` if `account` has been granted `role`. /// @param role: Bytes4 of a role /// @param account: Address to check /// @return bool true/false if account has role function hasRole( bytes4 role , address account ) external view returns (bool) { return contractRoles.has(role, account); } /// @dev Returns the admin role that controls a role /// @param role: Role to check /// @return admin role function getRoleAdmin( bytes4 role ) external view returns (bytes4) { return ADMIN; } /// @dev Grants `role` to `account` /// @param role: Bytes4 of a role /// @param account: account to give role to function grantRole( bytes4 role , address account ) external onlyRole(role) { if (role == PENDING_DEVS || role == PENDING_OWNERS) { revert Unauthorized(); } else { contractRoles.add(role, account); } } /// @dev Revokes `role` from `account` /// @param role: Bytes4 of a role /// @param account: account to revoke role from function revokeRole( bytes4 role , address account ) external onlyRole(role) { if (role == PENDING_DEVS || role == PENDING_OWNERS) { if (account == msg.sender) { contractRoles.remove(role, account); } else { revert Unauthorized(); } } else { contractRoles.remove(role, account); } } /// @dev Renounces `role` from `account` /// @param role: Bytes4 of a role function renounceRole( bytes4 role ) external onlyRole(role) { contractRoles.remove(role, msg.sender); } ////////////////////////////////////////// /// EIP-165: Standard Interface Detection ////////////////////////////////////////// /// @dev Query if a contract implements an interface /// @param interfaceID The interface identifier, as specified in ERC-165 /// @notice Interface identification is specified in ERC-165. This function /// uses less than 30,000 gas. /// @return `true` if the contract implements `interfaceID` and /// `interfaceID` is not 0xffffffff, `false` otherwise function supportsInterface( bytes4 interfaceID ) external view virtual override returns (bool) { return ( interfaceID == type(IERC173).interfaceId || interfaceID == type(IMAX173).interfaceId || interfaceID == type(IMAXDEV).interfaceId || interfaceID == type(IRoles).interfaceId || interfaceID == type(IERC20).interfaceId ); } uint256 internal bpsDeposit; uint256[34] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/StorageSlot.sol) pragma solidity ^0.8.0; /** * @dev Library for reading and writing primitive types to specific storage slots. * * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. * This library helps with reading and writing to such slots without the need for inline assembly. * * The functions in this library return Slot structs that contain a `value` member that can be used to read or write. * * Example usage to set ERC1967 implementation slot: * ``` * contract ERC1967 { * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; * * function _getImplementation() internal view returns (address) { * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; * } * * function _setImplementation(address newImplementation) internal { * require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract"); * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; * } * } * ``` * * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._ */ library StorageSlotUpgradeable { struct AddressSlot { address value; } struct BooleanSlot { bool value; } struct Bytes32Slot { bytes32 value; } struct Uint256Slot { uint256 value; } /** * @dev Returns an `AddressSlot` with member `value` located at `slot`. */ function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `BooleanSlot` with member `value` located at `slot`. */ function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Bytes32Slot` with member `value` located at `slot`. */ function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } /** * @dev Returns an `Uint256Slot` with member `value` located at `slot`. */ function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) { /// @solidity memory-safe-assembly assembly { r.slot := slot } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (proxy/utils/UUPSUpgradeable.sol) pragma solidity ^0.8.0; import "../../interfaces/draft-IERC1822Upgradeable.sol"; import "../ERC1967/ERC1967UpgradeUpgradeable.sol"; import "./Initializable.sol"; /** * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. * * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing * `UUPSUpgradeable` with a custom implementation of upgrades. * * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism. * * _Available since v4.1._ */ abstract contract UUPSUpgradeable is Initializable, IERC1822ProxiableUpgradeable, ERC1967UpgradeUpgradeable { function __UUPSUpgradeable_init() internal onlyInitializing { } function __UUPSUpgradeable_init_unchained() internal onlyInitializing { } /// @custom:oz-upgrades-unsafe-allow state-variable-immutable state-variable-assignment address private immutable __self = address(this); /** * @dev Check that the execution is being performed through a delegatecall call and that the execution context is * a proxy contract with an implementation (as defined in ERC1967) pointing to self. This should only be the case * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a * function through ERC1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to * fail. */ modifier onlyProxy() { require(address(this) != __self, "Function must be called through delegatecall"); require(_getImplementation() == __self, "Function must be called through active proxy"); _; } /** * @dev Check that the execution is not being performed through a delegate call. This allows a function to be * callable on the implementing contract but not through proxies. */ modifier notDelegated() { require(address(this) == __self, "UUPSUpgradeable: must not be called through delegatecall"); _; } /** * @dev Implementation of the ERC1822 {proxiableUUID} function. This returns the storage slot used by the * implementation. It is used to validate the implementation's compatibility when performing an upgrade. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier. */ function proxiableUUID() external view virtual override notDelegated returns (bytes32) { return _IMPLEMENTATION_SLOT; } /** * @dev Upgrade the implementation of the proxy to `newImplementation`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. */ function upgradeTo(address newImplementation) external virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallUUPS(newImplementation, new bytes(0), false); } /** * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call * encoded in `data`. * * Calls {_authorizeUpgrade}. * * Emits an {Upgraded} event. */ function upgradeToAndCall(address newImplementation, bytes memory data) external payable virtual onlyProxy { _authorizeUpgrade(newImplementation); _upgradeToAndCallUUPS(newImplementation, data, true); } /** * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by * {upgradeTo} and {upgradeToAndCall}. * * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}. * * ```solidity * function _authorizeUpgrade(address) internal override onlyOwner {} * ``` */ function _authorizeUpgrade(address newImplementation) internal virtual; /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol) pragma solidity ^0.8.0; /** * @dev This is the interface that {BeaconProxy} expects of its beacon. */ interface IBeaconUpgradeable { /** * @dev Must return an address that can be used as a delegate call target. * * {BeaconProxy} will check that this address is a contract. */ function implementation() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.3) (proxy/ERC1967/ERC1967Upgrade.sol) pragma solidity ^0.8.2; import "../beacon/IBeaconUpgradeable.sol"; import "../../interfaces/IERC1967Upgradeable.sol"; import "../../interfaces/draft-IERC1822Upgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/StorageSlotUpgradeable.sol"; import "../utils/Initializable.sol"; /** * @dev This abstract contract provides getters and event emitting update functions for * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. * * _Available since v4.1._ * * @custom:oz-upgrades-unsafe-allow delegatecall */ abstract contract ERC1967UpgradeUpgradeable is Initializable, IERC1967Upgradeable { function __ERC1967Upgrade_init() internal onlyInitializing { } function __ERC1967Upgrade_init_unchained() internal onlyInitializing { } // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1 bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143; /** * @dev Storage slot with the address of the current implementation. * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; /** * @dev Returns the current implementation address. */ function _getImplementation() internal view returns (address) { return StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value; } /** * @dev Stores a new address in the EIP1967 implementation slot. */ function _setImplementation(address newImplementation) private { require(AddressUpgradeable.isContract(newImplementation), "ERC1967: new implementation is not a contract"); StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } /** * @dev Perform implementation upgrade * * Emits an {Upgraded} event. */ function _upgradeTo(address newImplementation) internal { _setImplementation(newImplementation); emit Upgraded(newImplementation); } /** * @dev Perform implementation upgrade with additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCall( address newImplementation, bytes memory data, bool forceCall ) internal { _upgradeTo(newImplementation); if (data.length > 0 || forceCall) { _functionDelegateCall(newImplementation, data); } } /** * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call. * * Emits an {Upgraded} event. */ function _upgradeToAndCallUUPS( address newImplementation, bytes memory data, bool forceCall ) internal { // Upgrades from old implementations will perform a rollback test. This test requires the new // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing // this special case will break upgrade paths from old UUPS implementation to new ones. if (StorageSlotUpgradeable.getBooleanSlot(_ROLLBACK_SLOT).value) { _setImplementation(newImplementation); } else { try IERC1822ProxiableUpgradeable(newImplementation).proxiableUUID() returns (bytes32 slot) { require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID"); } catch { revert("ERC1967Upgrade: new implementation is not UUPS"); } _upgradeToAndCall(newImplementation, data, forceCall); } } /** * @dev Storage slot with the admin of the contract. * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is * validated in the constructor. */ bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103; /** * @dev Returns the current admin. */ function _getAdmin() internal view returns (address) { return StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value; } /** * @dev Stores a new address in the EIP1967 admin slot. */ function _setAdmin(address newAdmin) private { require(newAdmin != address(0), "ERC1967: new admin is the zero address"); StorageSlotUpgradeable.getAddressSlot(_ADMIN_SLOT).value = newAdmin; } /** * @dev Changes the admin of the proxy. * * Emits an {AdminChanged} event. */ function _changeAdmin(address newAdmin) internal { emit AdminChanged(_getAdmin(), newAdmin); _setAdmin(newAdmin); } /** * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor. */ bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50; /** * @dev Returns the current beacon. */ function _getBeacon() internal view returns (address) { return StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value; } /** * @dev Stores a new beacon in the EIP1967 beacon slot. */ function _setBeacon(address newBeacon) private { require(AddressUpgradeable.isContract(newBeacon), "ERC1967: new beacon is not a contract"); require( AddressUpgradeable.isContract(IBeaconUpgradeable(newBeacon).implementation()), "ERC1967: beacon implementation is not a contract" ); StorageSlotUpgradeable.getAddressSlot(_BEACON_SLOT).value = newBeacon; } /** * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that). * * Emits a {BeaconUpgraded} event. */ function _upgradeBeaconToAndCall( address newBeacon, bytes memory data, bool forceCall ) internal { _setBeacon(newBeacon); emit BeaconUpgraded(newBeacon); if (data.length > 0 || forceCall) { _functionDelegateCall(IBeaconUpgradeable(newBeacon).implementation(), data); } } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function _functionDelegateCall(address target, bytes memory data) private returns (bytes memory) { require(AddressUpgradeable.isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return AddressUpgradeable.verifyCallResult(success, returndata, "Address: low-level delegate call failed"); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol) pragma solidity ^0.8.0; /** * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified * proxy whose upgrades are fully controlled by the current implementation. */ interface IERC1822ProxiableUpgradeable { /** * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation * address. * * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this * function revert if invoked through a proxy. */ function proxiableUUID() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.3) (interfaces/IERC1967.sol) pragma solidity ^0.8.0; /** * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC. * * _Available since v4.9._ */ interface IERC1967Upgradeable { /** * @dev Emitted when the implementation is upgraded. */ event Upgraded(address indexed implementation); /** * @dev Emitted when the admin account has changed. */ event AdminChanged(address previousAdmin, address newAdmin); /** * @dev Emitted when the beacon is changed. */ event BeaconUpgraded(address indexed beacon); }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 10000 }, "evmVersion": "paris", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"string","name":"reason","type":"string"}],"name":"MaxSplaining","type":"error"},{"inputs":[{"internalType":"string","name":"reason","type":"string"}],"name":"MaxSplaining","type":"error"},{"inputs":[{"internalType":"string","name":"reason","type":"string"}],"name":"MaxSplaining","type":"error"},{"inputs":[{"internalType":"string","name":"reason","type":"string"}],"name":"MaxSplaining","type":"error"},{"inputs":[{"internalType":"uint256","name":"yourTime","type":"uint256"},{"internalType":"uint256","name":"hitTime","type":"uint256"}],"name":"TooLateBoomer","type":"error"},{"inputs":[{"internalType":"uint256","name":"yourTime","type":"uint256"},{"internalType":"uint256","name":"hitTime","type":"uint256"}],"name":"TooSoonJunior","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"previousAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"AdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_owner","type":"address"},{"indexed":true,"internalType":"address","name":"_spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"beacon","type":"address"}],"name":"BeaconUpgraded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_endpoint","type":"address"}],"name":"EndpointSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_chainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"TrustedRemoteSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"implementation","type":"address"}],"name":"Upgraded","type":"event"},{"inputs":[],"name":"acceptDeveloper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"addExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"newAddresses","type":"address[]"}],"name":"addExemptBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentLZGas","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"declineDeveloper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"declineOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"role","type":"bytes4"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"role","type":"bytes4"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"role","type":"bytes4"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"address","name":"_admin","type":"address"},{"internalType":"address","name":"_dev","type":"address"},{"internalType":"address","name":"_owner","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxiableUUID","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newDeveloper","type":"address"}],"name":"pushDeveloper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"pushOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"removeExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"newAddresses","type":"address[]"}],"name":"removeExemptBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceDeveloper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"role","type":"bytes4"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"role","type":"bytes4"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newEndpoint","type":"address"}],"name":"setEndPoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setTres","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDeveloper","type":"address"}],"name":"transferDeveloper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"}],"name":"upgradeTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newImplementation","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"upgradeToAndCall","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60a0604052306080523480156200001557600080fd5b506200002062000026565b620000e8565b600054610100900460ff1615620000935760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff9081161015620000e6576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b60805161495e62000120600039600081816113c60152818161145c0152818161176d0152818161180301526118fe015261495e6000f3fe6080604052600436106103075760003560e01c8063715018a61161019a578063b24ac7b7116100e1578063db0ed6a01161008a578063eb8d72b711610064578063eb8d72b7146108af578063f2fde38b146108cf578063fa04d2a7146108ef57600080fd5b8063db0ed6a01461084f578063dd62ed3e1461086f578063de02cde71461088f57600080fd5b8063cf89fa03116100bb578063cf89fa0314610809578063d1deba1f1461081c578063d39ce77c1461082f57600080fd5b8063b24ac7b7146107ab578063ca4b208b146107cb578063cb40cb49146107e957600080fd5b80638ee7491211610143578063a86ff9601161011d578063a86ff96014610761578063a9059cbb14610776578063ad6d9c171461079657600080fd5b80638ee74912146106c1578063943fb8721461072c57806395d89b411461074c57600080fd5b806379ba50971161017457806379ba50971461065a5780637cf8e3891461066f5780638da5cb5b1461068f57600080fd5b8063715018a6146106055780637533d7881461061a5780637835137a1461063a57600080fd5b806331e26cfd1161025e57806352d1902d1161020757806364cb4edb116101e157806364cb4edb146105a557806366278a6c146105c557806370a08231146105e557600080fd5b806352d1902d146105185780635ba5e9f01461052d5780636149d8711461058557600080fd5b806344faded01161023857806344faded0146104d0578063475de12e146104f05780634f1ef2861461050557600080fd5b806331e26cfd1461047b5780633659cfe61461049057806342966c68146104b057600080fd5b806318160ddd116102c057806323b872dd1161029a57806323b872dd146104245780632bfcf0f214610444578063313ce5671461045957600080fd5b806318160ddd146103c55780631c37a822146103e45780631cdd35c91461040457600080fd5b806306fdde03116102f157806306fdde0314610363578063095ea7b31461038557806310ab9432146103a557600080fd5b80621d35671461030c57806301ffc9a71461032e575b600080fd5b34801561031857600080fd5b5061032c610327366004613cfe565b61090f565b005b34801561033a57600080fd5b5061034e610349366004613db3565b610b4d565b60405190151581526020015b60405180910390f35b34801561036f57600080fd5b50610378610cca565b60405161035a9190613e1e565b34801561039157600080fd5b5061034e6103a0366004613e46565b610cdb565b3480156103b157600080fd5b5061034e6103c0366004613e72565b610d3d565b3480156103d157600080fd5b506003545b60405190815260200161035a565b3480156103f057600080fd5b5061032c6103ff366004613cfe565b610d52565b34801561041057600080fd5b5061032c61041f366004613ea9565b610dae565b34801561043057600080fd5b5061034e61043f366004613ec6565b610e06565b34801561045057600080fd5b5061032c6112b0565b34801561046557600080fd5b5060045460405160ff909116815260200161035a565b34801561048757600080fd5b5061032c611345565b34801561049c57600080fd5b5061032c6104ab366004613ea9565b6113bc565b3480156104bc57600080fd5b5061034e6104cb366004613f07565b611556565b3480156104dc57600080fd5b5061032c6104eb366004613e72565b611675565b3480156104fc57600080fd5b506015546103d6565b61032c610513366004613f20565b611763565b34801561052457600080fd5b506103d66118f1565b34801561053957600080fd5b50610554610548366004613db3565b506303e1469160e61b90565b6040517fffffffff00000000000000000000000000000000000000000000000000000000909116815260200161035a565b34801561059157600080fd5b5061032c6105a0366004613ea9565b6119b6565b3480156105b157600080fd5b5061032c6105c0366004613ea9565b611a14565b3480156105d157600080fd5b5061032c6105e0366004613db3565b611a77565b3480156105f157600080fd5b506103d6610600366004613ea9565b611aae565b34801561061157600080fd5b5061032c611acc565b34801561062657600080fd5b50610378610635366004613f70565b611b4f565b34801561064657600080fd5b5061032c610655366004613ea9565b611be9565b34801561066657600080fd5b5061032c611c39565b34801561067b57600080fd5b5061032c61068a366004613f8b565b611ce7565b34801561069b57600080fd5b506008546001600160a01b03165b6040516001600160a01b03909116815260200161035a565b3480156106cd57600080fd5b506107176106dc36600461403d565b601360209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161035a565b34801561073857600080fd5b5061032c610747366004613f07565b611d41565b34801561075857600080fd5b50610378611d5e565b34801561076d57600080fd5b5061032c611d6a565b34801561078257600080fd5b5061034e610791366004613e46565b611de1565b3480156107a257600080fd5b5061032c612071565b3480156107b757600080fd5b5061032c6107c6366004613ea9565b6120c2565b3480156107d757600080fd5b506009546001600160a01b03166106a9565b3480156107f557600080fd5b5061032c610804366004613ea9565b6120e5565b61032c610817366004614094565b61215f565b61032c61082a3660046140f9565b6125b1565b34801561083b57600080fd5b5061032c61084a366004613ea9565b61274d565b34801561085b57600080fd5b5061032c61086a366004614185565b6127c4565b34801561087b57600080fd5b506103d661088a366004614223565b612932565b34801561089b57600080fd5b5061032c6108aa366004613e72565b61295f565b3480156108bb57600080fd5b5061032c6108ca366004614241565b612a5e565b3480156108db57600080fd5b5061032c6108ea366004613ea9565b612ad5565b3480156108fb57600080fd5b5061032c61090a366004613f8b565b612b83565b6012546001600160a01b0316331461096f57604051630330dbc960e11b815260206004820152600560248201527f4e42523a3100000000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b61ffff84166000908152601460205260409020805461098d90614294565b905083511415806109cd575061ffff84166000908152601460205260409081902090516109ba91906142e1565b6040518091039020838051906020012014155b15610a1b57604051630330dbc960e11b815260206004820152600560248201527f4e42523a320000000000000000000000000000000000000000000000000000006044820152606401610966565b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290610a5d908790879087908790600401614357565b600060405180830381600087803b158015610a7757600080fd5b505af1925050508015610a88575060015b610b47576040518060400160405280825181526020018280519060200120815250601360008661ffff1661ffff16815260200190815260200160002084604051610ad291906143a1565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610b3e908690869086908690614357565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7f5828d0000000000000000000000000000000000000000000000000000000001480610be057507fffffffff0000000000000000000000000000000000000000000000000000000082167f7319562d00000000000000000000000000000000000000000000000000000000145b80610c2c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f78bab63900000000000000000000000000000000000000000000000000000000145b80610c7857507fffffffff0000000000000000000000000000000000000000000000000000000082167fb7d1e49900000000000000000000000000000000000000000000000000000000145b80610cc457507fffffffff0000000000000000000000000000000000000000000000000000000082167f942e8b2200000000000000000000000000000000000000000000000000000000145b92915050565b6060610cd66001612bdd565b905090565b3360008181526002602090815260408083206001600160a01b0387168085529083529281902085905551848152600193917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a392915050565b6000610d4b60078484612c73565b9392505050565b333014610da257604051630330dbc960e11b815260206004820152600560248201527f4e42523a330000000000000000000000000000000000000000000000000000006044820152606401610966565b610b4784848484612d02565b610dc1600763ca4b208b60e01b33612c73565b15610dd457610dd1600b82612d73565b50565b6040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152600090819030906370a0823190602401602060405180830381865afa158015610e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8c91906143bd565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081526001600160a01b0387166004820152336024820152909150600090309063dd62ed3e90604401602060405180830381865afa158015610ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1991906143bd565b90506001600160a01b0386161580610f3857506001600160a01b038516155b15610f8657604051630330dbc960e11b815260206004820152601960248201527f4d617832303a20746f2f66726f6d2061646472657373283029000000000000006044820152606401610966565b81841115610fd757604051630330dbc960e11b815260206004820152601a60248201527f4d617832303a206973737566696369656e742062616c616e63650000000000006044820152606401610966565b8084111561104e57604051630330dbc960e11b815260206004820152602360248201527f4d617832303a206e6f7420617070726f76656420746f207370656e64205f766160448201527f6c756500000000000000000000000000000000000000000000000000000000006064820152608401610966565b6001600160a01b0385166000908152600e602052604090205460ff168061108d57506001600160a01b0386166000908152600e602052604090205460ff165b156111785761109f6001878787612e7d565b9250846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516110e691815260200190565b60405180910390a361112b86336110fd8785614405565b6001600160a01b03928316600090815260026020908152604080832095909416825293909352912055600190565b50336001600160a01b0387167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256111628785614405565b60405190815260200160405180910390a36112a7565b60006064611187866063614418565b611191919061442f565b90506111a06001888884612e7d565b9350856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111e791815260200190565b60405180910390a3611206876111fd8388614405565b60019190612f20565b60006001600160a01b0388167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61123d8489614405565b60405190815260200160405180910390a361125d87336110fd8886614405565b50336001600160a01b0388167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256112948886614405565b60405190815260200160405180910390a3505b50509392505050565b7fca4b208a000000000000000000000000000000000000000000000000000000006112dd60078233612c73565b806112f657506112f660076303e1469160e61b33612c73565b15610dd45761130e600763ca4b208b60e01b33612fb9565b6113196007336130e3565b610dd160077fca4b208a00000000000000000000000000000000000000000000000000000000336131e2565b7fca4b208a0000000000000000000000000000000000000000000000000000000061137260078233612c73565b8061138b575061138b60076303e1469160e61b33612c73565b15610dd457610dd160077fca4b208a00000000000000000000000000000000000000000000000000000000336131e2565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016300361145a5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610966565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166114b57f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b0316146115315760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610966565b61153a81613301565b60408051600080825260208201909252610dd191839190613364565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600090819030906370a0823190602401602060405180830381865afa1580156115af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d391906143bd565b90508083111561162657604051630330dbc960e11b815260206004820152601a60248201527f4d617832303a206973737566696369656e742062616c616e63650000000000006044820152606401610966565b61163260013385612f20565b6040518381526001925060009033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b50919050565b8161168260078233612c73565b8061169b575061169b60076303e1469160e61b33612c73565b15610dd4577fffffffff0000000000000000000000000000000000000000000000000000000083167fca4b208a00000000000000000000000000000000000000000000000000000000148061173157507fffffffff0000000000000000000000000000000000000000000000000000000083167f8da5cb5a00000000000000000000000000000000000000000000000000000000145b1561175757336001600160a01b03831603610dd457611752600784846131e2565b505050565b611752600784846131e2565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001630036118015760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610966565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031661185c7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b0316146118d85760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610966565b6118e182613301565b6118ed82826001613364565b5050565b6000306001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146119915760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608401610966565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b63ca4b208b60e01b6119ca60078233612c73565b806119e357506119e360076303e1469160e61b33612c73565b15610dd4576118ed60077fca4b208a0000000000000000000000000000000000000000000000000000000084612fb9565b63ca4b208b60e01b611a2860078233612c73565b80611a415750611a4160076303e1469160e61b33612c73565b15610dd457611a59600763ca4b208b60e01b84612fb9565b611a646007836130e3565b6118ed600763ca4b208b60e01b336131e2565b80611a8460078233612c73565b80611a9d5750611a9d60076303e1469160e61b33612c73565b15610dd4576118ed600783336131e2565b6001600160a01b038116600090815260016020526040812054610cc4565b7f8da5cb5b00000000000000000000000000000000000000000000000000000000611af960078233612c73565b80611b125750611b1260076303e1469160e61b33612c73565b15610dd457611b2360076000613504565b610dd160077f8da5cb5b00000000000000000000000000000000000000000000000000000000336131e2565b60146020526000908152604090208054611b6890614294565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9490614294565b8015611be15780601f10611bb657610100808354040283529160200191611be1565b820191906000526020600020905b815481529060010190602001808311611bc457829003601f168201915b505050505081565b611bfc600763ca4b208b60e01b33612c73565b15610dd457601180546001600160a01b0383167fffffffffffffffffffffffff000000000000000000000000000000000000000090911617905550565b7f8da5cb5a00000000000000000000000000000000000000000000000000000000611c6660078233612c73565b80611c7f5750611c7f60076303e1469160e61b33612c73565b15610dd457611cb060077f8da5cb5b0000000000000000000000000000000000000000000000000000000033612fb9565b611cbb600733613504565b610dd160077f8da5cb5a00000000000000000000000000000000000000000000000000000000336131e2565b611cfa600763ca4b208b60e01b33612c73565b15610dd457805160005b8181101561175257611d39838281518110611d2157611d2161446a565b6020026020010151600b612d7390919063ffffffff16565b600101611d04565b611d54600763ca4b208b60e01b33612c73565b15610dd457601555565b6060610cd660016135a1565b7f8da5cb5a00000000000000000000000000000000000000000000000000000000611d9760078233612c73565b80611db05750611db060076303e1469160e61b33612c73565b15610dd457610dd160077f8da5cb5a00000000000000000000000000000000000000000000000000000000336131e2565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600090819030906370a0823190602401602060405180830381865afa158015611e3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5e91906143bd565b90506001600160a01b038416611eb757604051630330dbc960e11b815260206004820152601460248201527f4d617832303a20746f20616464726573732830290000000000000000000000006044820152606401610966565b80831115611f0857604051630330dbc960e11b815260206004820152601a60248201527f4d617832303a206973737566696369656e742062616c616e63650000000000006044820152606401610966565b6001600160a01b0384166000908152600e602052604090205460ff1680611f3e5750336000908152600e602052604090205460ff165b15611fa457611f506001338686612e7d565b9150836001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611f9791815260200190565b60405180910390a361206a565b60006064611fb3856063614418565b611fbd919061442f565b9050611fcc6001338784612e7d565b9250846001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161201391815260200190565b60405180910390a3612029336111fd8387614405565b6000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6120578488614405565b60405190815260200160405180910390a3505b5092915050565b63ca4b208b60e01b61208560078233612c73565b8061209e575061209e60076303e1469160e61b33612c73565b15610dd4576120af600760006130e3565b610dd1600763ca4b208b60e01b336131e2565b6120d5600763ca4b208b60e01b33612c73565b15610dd457610dd1600b826135b2565b6120f8600763ca4b208b60e01b33612c73565b15610dd457601280547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040517f87bf030d6c6aa55db1e81d52f84962fc04ce1d477e64e50d57d3a91c52296f9390600090a250565b33600090815260016020526040902054808211156121a9576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61ffff8316600090815260146020526040902080546121c790614294565b905060000361221957604051630330dbc960e11b815260206004820152601160248201527f546f6b656e3a205452206e6f74207365740000000000000000000000000000006044820152606401610966565b600061222660648461442f565b336000908152600e60205260408120549192509060ff16156122f85761224c8285614405565b60115490915061226a9060019033906001600160a01b031685612e7d565b506011546040518381526001600160a01b039091169033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36122bb60013383612f20565b60405181815260009033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36123c4565b612303826002614418565b61230d9085614405565b9050600061231b8386614405565b6011549091506123399060019033906001600160a01b031686612e7d565b506011546040518481526001600160a01b039091169033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361238a60013383612f20565b60405181815260009033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505b604080513360208201528082018390528151808203830181526060820183526015547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526012547f40a7bb100000000000000000000000000000000000000000000000000000000090945290926001926000916001600160a01b0316906340a7bb109061247b908c90309089908790899060a601614499565b6040805180830381865afa158015612497573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124bb91906144df565b5090503481111561250f57604051630330dbc960e11b815260206004820152601660248201527f546f6b656e3a206d65737361676520666565206c6f77000000000000000000006044820152606401610966565b60125461ffff8a1660009081526014602052604080822090517fc58031000000000000000000000000000000000000000000000000000000000081526001600160a01b039093169263c5803100923492612574928f928b913391908b90600401614503565b6000604051808303818588803b15801561258d57600080fd5b505af11580156125a1573d6000803e3d6000fd5b5050505050505050505050505050565b61ffff851660009081526013602052604080822090516125d29087906143a1565b908152604080516020928190038301902067ffffffffffffffff8716600090815292529020600181015490915061264c57604051630330dbc960e11b815260206004820152600560248201527f4e42523a340000000000000000000000000000000000000000000000000000006044820152606401610966565b80548214158061267757508060010154838360405161266c9291906145e8565b604051809103902014155b156126c557604051630330dbc960e11b815260206004820152600560248201527f4e42523a350000000000000000000000000000000000000000000000000000006044820152606401610966565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a822906127139089908990899089908990600401614623565b600060405180830381600087803b15801561272d57600080fd5b505af1158015612741573d6000803e3d6000fd5b50505050505050505050565b7f8da5cb5b0000000000000000000000000000000000000000000000000000000061277a60078233612c73565b80612793575061279360076303e1469160e61b33612c73565b15610dd4576118ed60077f8da5cb5a0000000000000000000000000000000000000000000000000000000084612fb9565b600054610100900460ff16158080156127e45750600054600160ff909116105b806127fe5750303b1580156127fe575060005460ff166001145b6128705760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610966565b6000805460ff1916600117905580156128b057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b6128bf868660128787876136b3565b6128c76137c8565b801561292a57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050565b6001600160a01b038083166000908152600260209081526040808320938516835292905290812054610d4b565b8161296c60078233612c73565b80612985575061298560076303e1469160e61b33612c73565b15610dd4577fffffffff0000000000000000000000000000000000000000000000000000000083167fca4b208a000000000000000000000000000000000000000000000000000000001480612a1b57507fffffffff0000000000000000000000000000000000000000000000000000000083167f8da5cb5a00000000000000000000000000000000000000000000000000000000145b15612a52576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61175260078484612fb9565b612a71600763ca4b208b60e01b33612c73565b15610dd45761ffff83166000908152601460205260409020612a948284836146a9565b507f93c35c217d799290d33244ef8905b63167d13758ab18343cd8055ed1b8056748838383604051612ac8939291906147a6565b60405180910390a1505050565b7f8da5cb5b00000000000000000000000000000000000000000000000000000000612b0260078233612c73565b80612b1b5750612b1b60076303e1469160e61b33612c73565b15610dd457612b4c60077f8da5cb5b0000000000000000000000000000000000000000000000000000000084612fb9565b612b57600783613504565b6118ed60077f8da5cb5b00000000000000000000000000000000000000000000000000000000336131e2565b612b96600763ca4b208b60e01b33612c73565b15610dd457805160005b8181101561175257612bd5838281518110612bbd57612bbd61446a565b6020026020010151600b6135b290919063ffffffff16565b600101612ba0565b6060816004018054612bee90614294565b80601f0160208091040260200160405190810160405280929190818152602001828054612c1a90614294565b8015612c675780601f10612c3c57610100808354040283529160200191612c67565b820191906000526020600020905b815481529060010190602001808311612c4a57829003601f168201915b50505050509050919050565b60006001600160a01b038216612cb5576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b03166000908152602092835260408082207fffffffff000000000000000000000000000000000000000000000000000000009390931682529190925290205460ff1690565b60008082806020019051810190612d1991906147c4565b9092509050612d2a60018383613847565b6040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050505050565b6001600160a01b038116600090815260038301602052604090205460ff1615612ddf57604051630330dbc960e11b815260206004820152600760248201527f4c697374733a31000000000000000000000000000000000000000000000000006044820152606401610966565b6001600160a01b03811660009081526003830160205260409020805460ff19166001908117909155612e1690830180546001019055565b6001600160a01b0381166000818152600384016020908152604080832054815193845260ff161515918301919091528101919091527f42fa9f1391f36d7a12900fccb1e67467edf81e7f3771d34cbd23a4fe01f473e0906060015b60405180910390a15050565b6001600160a01b03831660009081526020859052604081205480831115612ee757604051630330dbc960e11b815260206004820152600760248201527f4d617832303a31000000000000000000000000000000000000000000000000006044820152606401610966565b50506001600160a01b03808416600090815260208690526040808220805485900390559184168152208054820190556001949350505050565b6001600160a01b03821660009081526020849052604090205480821115612f8a57604051630330dbc960e11b815260206004820152600760248201527f4d617832303a31000000000000000000000000000000000000000000000000006044820152606401610966565b6001600160a01b0390921660009081526020849052604090209181900390915560029091018054919091039055565b6001600160a01b038116612ff9576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613004838383612c73565b1561305257604051630330dbc960e11b815260206004820152600760248201527f526f6c65733a31000000000000000000000000000000000000000000000000006044820152606401610966565b6001600160a01b0381166000818152602085815260408083207fffffffff00000000000000000000000000000000000000000000000000000000871680855290835292819020805460ff19166001908117909155815193845291830193909352918101919091527fc8bed56f8e046b5a3f2c2b2be85045ea5c972dc18ad669157957897b4d26e9f790606001612ac8565b6130f58263ca4b208b60e01b83612c73565b15613167576002820180546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f2cfca82ac51c2fc6b6db547820d28d526a505e12d230afb8bf112a5aeefa9a4c90600090a3505050565b6001600160a01b038116610dd4576003820180546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907ff8ccb027dfcd135e000e9d45e6cc2d662578a8825d4c45b5e32e0adf67e79ec690600090a3505050565b6001600160a01b038116613222576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61322d838383612c73565b61327a57604051630330dbc960e11b815260206004820152600760248201527f526f6c65733a32000000000000000000000000000000000000000000000000006044820152606401610966565b6001600160a01b0381166000818152602085815260408083207fffffffff000000000000000000000000000000000000000000000000000000008716808552908352818420805460ff19169055815190815291820193909352918201527fc8bed56f8e046b5a3f2c2b2be85045ea5c972dc18ad669157957897b4d26e9f790606001612ac8565b6303e1469160e61b61331560078233612c73565b8061332e575061332e60076303e1469160e61b33612c73565b6118ed576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff161561339757611752836138db565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156133f1575060408051601f3d908101601f191682019092526133ee918101906143bd565b60015b6134635760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608401610966565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc81146134f85760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f7860448201527f6961626c655555494400000000000000000000000000000000000000000000006064820152608401610966565b506117528383836139b1565b61352f827f8da5cb5b0000000000000000000000000000000000000000000000000000000083612c73565b15613167576001820180546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6060816005018054612bee90614294565b6001600160a01b038116600090815260038301602052604090205460ff1661361d57604051630330dbc960e11b815260206004820152600760248201527f4c697374733a32000000000000000000000000000000000000000000000000006044820152606401610966565b6001600160a01b03811660009081526003830160205260409020805460ff1916905561364f6002830180546001019055565b6001600160a01b03811660008181526003840160209081526040918290205482516001815260ff909116151591810191909152908101919091527f42fa9f1391f36d7a12900fccb1e67467edf81e7f3771d34cbd23a4fe01f473e090606001612e71565b600054610100900460ff166137305760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610966565b61373b6001876139d6565b6137466001866139e4565b6004805460ff191660ff861617905561376860076303e1469160e61b85612fb9565b6137736007846139f2565b613786600763ca4b208b60e01b84612fb9565b6137916007836130e3565b6137bd60077f8da5cb5b0000000000000000000000000000000000000000000000000000000083612fb9565b61292a600782613504565b600054610100900460ff166138455760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610966565b565b6001600160a01b03821661389e57604051630330dbc960e11b815260206004820152600760248201527f4d617832303a32000000000000000000000000000000000000000000000000006044820152606401610966565b808360020160008282546138b291906147f2565b90915550506001600160a01b039091166000908152602092909252604090912080549091019055565b6001600160a01b0381163b6139585760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610966565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6139ba83613a76565b6000825111806139c75750805b1561175257610b478383613ab6565b600482016117528282614805565b600582016117528282614805565b613a04826303e1469160e61b83612c73565b15613167576003820180546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907ff8ccb027dfcd135e000e9d45e6cc2d662578a8825d4c45b5e32e0adf67e79ec690600090a3505050565b613a7f816138db565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606001600160a01b0383163b613b355760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610966565b600080846001600160a01b031684604051613b5091906143a1565b600060405180830381855af49150503d8060008114613b8b576040519150601f19603f3d011682016040523d82523d6000602084013e613b90565b606091505b5091509150613bb8828260405180606001604052806027815260200161490260279139613bc1565b95945050505050565b60608315613bd0575081610d4b565b610d4b8383815115613be55781518083602001fd5b8060405162461bcd60e51b81526004016109669190613e1e565b803561ffff81168114613c1157600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613c6e57613c6e613c16565b604052919050565b600082601f830112613c8757600080fd5b813567ffffffffffffffff811115613ca157613ca1613c16565b613cb46020601f19601f84011601613c45565b818152846020838601011115613cc957600080fd5b816020850160208301376000918101602001919091529392505050565b803567ffffffffffffffff81168114613c1157600080fd5b60008060008060808587031215613d1457600080fd5b613d1d85613bff565b9350602085013567ffffffffffffffff80821115613d3a57600080fd5b613d4688838901613c76565b9450613d5460408801613ce6565b93506060870135915080821115613d6a57600080fd5b50613d7787828801613c76565b91505092959194509250565b80357fffffffff0000000000000000000000000000000000000000000000000000000081168114613c1157600080fd5b600060208284031215613dc557600080fd5b610d4b82613d83565b60005b83811015613de9578181015183820152602001613dd1565b50506000910152565b60008151808452613e0a816020860160208601613dce565b601f01601f19169290920160200192915050565b602081526000610d4b6020830184613df2565b6001600160a01b0381168114610dd157600080fd5b60008060408385031215613e5957600080fd5b8235613e6481613e31565b946020939093013593505050565b60008060408385031215613e8557600080fd5b613e8e83613d83565b91506020830135613e9e81613e31565b809150509250929050565b600060208284031215613ebb57600080fd5b8135610d4b81613e31565b600080600060608486031215613edb57600080fd5b8335613ee681613e31565b92506020840135613ef681613e31565b929592945050506040919091013590565b600060208284031215613f1957600080fd5b5035919050565b60008060408385031215613f3357600080fd5b8235613f3e81613e31565b9150602083013567ffffffffffffffff811115613f5a57600080fd5b613f6685828601613c76565b9150509250929050565b600060208284031215613f8257600080fd5b610d4b82613bff565b60006020808385031215613f9e57600080fd5b823567ffffffffffffffff80821115613fb657600080fd5b818501915085601f830112613fca57600080fd5b813581811115613fdc57613fdc613c16565b8060051b9150613fed848301613c45565b818152918301840191848101908884111561400757600080fd5b938501935b83851015614031578435925061402183613e31565b828252938501939085019061400c565b98975050505050505050565b60008060006060848603121561405257600080fd5b61405b84613bff565b9250602084013567ffffffffffffffff81111561407757600080fd5b61408386828701613c76565b925050604084013590509250925092565b600080604083850312156140a757600080fd5b613e6483613bff565b60008083601f8401126140c257600080fd5b50813567ffffffffffffffff8111156140da57600080fd5b6020830191508360208285010111156140f257600080fd5b9250929050565b60008060008060006080868803121561411157600080fd5b61411a86613bff565b9450602086013567ffffffffffffffff8082111561413757600080fd5b61414389838a01613c76565b955061415160408901613ce6565b9450606088013591508082111561416757600080fd5b50614174888289016140b0565b969995985093965092949392505050565b600080600080600060a0868803121561419d57600080fd5b853567ffffffffffffffff808211156141b557600080fd5b6141c189838a01613c76565b965060208801359150808211156141d757600080fd5b506141e488828901613c76565b94505060408601356141f581613e31565b9250606086013561420581613e31565b9150608086013561421581613e31565b809150509295509295909350565b6000806040838503121561423657600080fd5b8235613e8e81613e31565b60008060006040848603121561425657600080fd5b61425f84613bff565b9250602084013567ffffffffffffffff81111561427b57600080fd5b614287868287016140b0565b9497909650939450505050565b600181811c908216806142a857607f821691505b60208210810361166f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008083546142ef81614294565b60018281168015614307576001811461431c5761434b565b60ff198416875282151583028701945061434b565b8760005260208060002060005b858110156143425781548a820152908401908201614329565b50505082870194505b50929695505050505050565b61ffff851681526080602082015260006143746080830186613df2565b67ffffffffffffffff8516604084015282810360608401526143968185613df2565b979650505050505050565b600082516143b3818460208701613dce565b9190910192915050565b6000602082840312156143cf57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b81810381811115610cc457610cc46143d6565b8082028115828204841417610cc457610cc46143d6565b600082614465577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b61ffff861681526001600160a01b038516602082015260a0604082015260006144c560a0830186613df2565b841515606084015282810360808401526140318185613df2565b600080604083850312156144f257600080fd5b505080516020909101519092909150565b61ffff871681526000602060c0818401526000885461452181614294565b8060c087015260e0600180841660008114614543576001811461455d5761458b565b60ff198516838a01528284151560051b8a0101955061458b565b8d6000528660002060005b858110156145835781548b8201860152908301908801614568565b8a0184019650505b505050505083810360408501526145a28189613df2565b9150506145ba60608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a08401526145db8185613df2565b9998505050505050505050565b8183823760009101908152919050565b818352818160208501375060006020828401015260006020601f19601f840116840101905092915050565b61ffff861681526080602082015260006146406080830187613df2565b67ffffffffffffffff8616604084015282810360608401526140318185876145f8565b601f82111561175257600081815260208120601f850160051c8101602086101561468a5750805b601f850160051c820191505b8181101561292a57828155600101614696565b67ffffffffffffffff8311156146c1576146c1613c16565b6146d5836146cf8354614294565b83614663565b6000601f84116001811461472757600085156146f15750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b17835561479f565b600083815260209020601f19861690835b828110156147585786850135825560209485019460019092019101614738565b5086821015614793577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b61ffff84168152604060208201526000613bb86040830184866145f8565b600080604083850312156147d757600080fd5b82516147e281613e31565b6020939093015192949293505050565b80820180821115610cc457610cc46143d6565b815167ffffffffffffffff81111561481f5761481f613c16565b6148338161482d8454614294565b84614663565b602080601f83116001811461488657600084156148505750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b17855561292a565b600085815260208120601f198616915b828110156148b557888601518255948401946001909101908401614896565b50858210156148f157878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b0190555056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122096cb03c8200764814e69f0a0cc0cf8f771d6cd4d182d5ec8b53e3aa0a5ff410d64736f6c63430008130033
Deployed Bytecode
0x6080604052600436106103075760003560e01c8063715018a61161019a578063b24ac7b7116100e1578063db0ed6a01161008a578063eb8d72b711610064578063eb8d72b7146108af578063f2fde38b146108cf578063fa04d2a7146108ef57600080fd5b8063db0ed6a01461084f578063dd62ed3e1461086f578063de02cde71461088f57600080fd5b8063cf89fa03116100bb578063cf89fa0314610809578063d1deba1f1461081c578063d39ce77c1461082f57600080fd5b8063b24ac7b7146107ab578063ca4b208b146107cb578063cb40cb49146107e957600080fd5b80638ee7491211610143578063a86ff9601161011d578063a86ff96014610761578063a9059cbb14610776578063ad6d9c171461079657600080fd5b80638ee74912146106c1578063943fb8721461072c57806395d89b411461074c57600080fd5b806379ba50971161017457806379ba50971461065a5780637cf8e3891461066f5780638da5cb5b1461068f57600080fd5b8063715018a6146106055780637533d7881461061a5780637835137a1461063a57600080fd5b806331e26cfd1161025e57806352d1902d1161020757806364cb4edb116101e157806364cb4edb146105a557806366278a6c146105c557806370a08231146105e557600080fd5b806352d1902d146105185780635ba5e9f01461052d5780636149d8711461058557600080fd5b806344faded01161023857806344faded0146104d0578063475de12e146104f05780634f1ef2861461050557600080fd5b806331e26cfd1461047b5780633659cfe61461049057806342966c68146104b057600080fd5b806318160ddd116102c057806323b872dd1161029a57806323b872dd146104245780632bfcf0f214610444578063313ce5671461045957600080fd5b806318160ddd146103c55780631c37a822146103e45780631cdd35c91461040457600080fd5b806306fdde03116102f157806306fdde0314610363578063095ea7b31461038557806310ab9432146103a557600080fd5b80621d35671461030c57806301ffc9a71461032e575b600080fd5b34801561031857600080fd5b5061032c610327366004613cfe565b61090f565b005b34801561033a57600080fd5b5061034e610349366004613db3565b610b4d565b60405190151581526020015b60405180910390f35b34801561036f57600080fd5b50610378610cca565b60405161035a9190613e1e565b34801561039157600080fd5b5061034e6103a0366004613e46565b610cdb565b3480156103b157600080fd5b5061034e6103c0366004613e72565b610d3d565b3480156103d157600080fd5b506003545b60405190815260200161035a565b3480156103f057600080fd5b5061032c6103ff366004613cfe565b610d52565b34801561041057600080fd5b5061032c61041f366004613ea9565b610dae565b34801561043057600080fd5b5061034e61043f366004613ec6565b610e06565b34801561045057600080fd5b5061032c6112b0565b34801561046557600080fd5b5060045460405160ff909116815260200161035a565b34801561048757600080fd5b5061032c611345565b34801561049c57600080fd5b5061032c6104ab366004613ea9565b6113bc565b3480156104bc57600080fd5b5061034e6104cb366004613f07565b611556565b3480156104dc57600080fd5b5061032c6104eb366004613e72565b611675565b3480156104fc57600080fd5b506015546103d6565b61032c610513366004613f20565b611763565b34801561052457600080fd5b506103d66118f1565b34801561053957600080fd5b50610554610548366004613db3565b506303e1469160e61b90565b6040517fffffffff00000000000000000000000000000000000000000000000000000000909116815260200161035a565b34801561059157600080fd5b5061032c6105a0366004613ea9565b6119b6565b3480156105b157600080fd5b5061032c6105c0366004613ea9565b611a14565b3480156105d157600080fd5b5061032c6105e0366004613db3565b611a77565b3480156105f157600080fd5b506103d6610600366004613ea9565b611aae565b34801561061157600080fd5b5061032c611acc565b34801561062657600080fd5b50610378610635366004613f70565b611b4f565b34801561064657600080fd5b5061032c610655366004613ea9565b611be9565b34801561066657600080fd5b5061032c611c39565b34801561067b57600080fd5b5061032c61068a366004613f8b565b611ce7565b34801561069b57600080fd5b506008546001600160a01b03165b6040516001600160a01b03909116815260200161035a565b3480156106cd57600080fd5b506107176106dc36600461403d565b601360209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161035a565b34801561073857600080fd5b5061032c610747366004613f07565b611d41565b34801561075857600080fd5b50610378611d5e565b34801561076d57600080fd5b5061032c611d6a565b34801561078257600080fd5b5061034e610791366004613e46565b611de1565b3480156107a257600080fd5b5061032c612071565b3480156107b757600080fd5b5061032c6107c6366004613ea9565b6120c2565b3480156107d757600080fd5b506009546001600160a01b03166106a9565b3480156107f557600080fd5b5061032c610804366004613ea9565b6120e5565b61032c610817366004614094565b61215f565b61032c61082a3660046140f9565b6125b1565b34801561083b57600080fd5b5061032c61084a366004613ea9565b61274d565b34801561085b57600080fd5b5061032c61086a366004614185565b6127c4565b34801561087b57600080fd5b506103d661088a366004614223565b612932565b34801561089b57600080fd5b5061032c6108aa366004613e72565b61295f565b3480156108bb57600080fd5b5061032c6108ca366004614241565b612a5e565b3480156108db57600080fd5b5061032c6108ea366004613ea9565b612ad5565b3480156108fb57600080fd5b5061032c61090a366004613f8b565b612b83565b6012546001600160a01b0316331461096f57604051630330dbc960e11b815260206004820152600560248201527f4e42523a3100000000000000000000000000000000000000000000000000000060448201526064015b60405180910390fd5b61ffff84166000908152601460205260409020805461098d90614294565b905083511415806109cd575061ffff84166000908152601460205260409081902090516109ba91906142e1565b6040518091039020838051906020012014155b15610a1b57604051630330dbc960e11b815260206004820152600560248201527f4e42523a320000000000000000000000000000000000000000000000000000006044820152606401610966565b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290610a5d908790879087908790600401614357565b600060405180830381600087803b158015610a7757600080fd5b505af1925050508015610a88575060015b610b47576040518060400160405280825181526020018280519060200120815250601360008661ffff1661ffff16815260200190815260200160002084604051610ad291906143a1565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610b3e908690869086908690614357565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7f5828d0000000000000000000000000000000000000000000000000000000001480610be057507fffffffff0000000000000000000000000000000000000000000000000000000082167f7319562d00000000000000000000000000000000000000000000000000000000145b80610c2c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f78bab63900000000000000000000000000000000000000000000000000000000145b80610c7857507fffffffff0000000000000000000000000000000000000000000000000000000082167fb7d1e49900000000000000000000000000000000000000000000000000000000145b80610cc457507fffffffff0000000000000000000000000000000000000000000000000000000082167f942e8b2200000000000000000000000000000000000000000000000000000000145b92915050565b6060610cd66001612bdd565b905090565b3360008181526002602090815260408083206001600160a01b0387168085529083529281902085905551848152600193917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a392915050565b6000610d4b60078484612c73565b9392505050565b333014610da257604051630330dbc960e11b815260206004820152600560248201527f4e42523a330000000000000000000000000000000000000000000000000000006044820152606401610966565b610b4784848484612d02565b610dc1600763ca4b208b60e01b33612c73565b15610dd457610dd1600b82612d73565b50565b6040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0384166004820152600090819030906370a0823190602401602060405180830381865afa158015610e68573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8c91906143bd565b6040517fdd62ed3e0000000000000000000000000000000000000000000000000000000081526001600160a01b0387166004820152336024820152909150600090309063dd62ed3e90604401602060405180830381865afa158015610ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1991906143bd565b90506001600160a01b0386161580610f3857506001600160a01b038516155b15610f8657604051630330dbc960e11b815260206004820152601960248201527f4d617832303a20746f2f66726f6d2061646472657373283029000000000000006044820152606401610966565b81841115610fd757604051630330dbc960e11b815260206004820152601a60248201527f4d617832303a206973737566696369656e742062616c616e63650000000000006044820152606401610966565b8084111561104e57604051630330dbc960e11b815260206004820152602360248201527f4d617832303a206e6f7420617070726f76656420746f207370656e64205f766160448201527f6c756500000000000000000000000000000000000000000000000000000000006064820152608401610966565b6001600160a01b0385166000908152600e602052604090205460ff168061108d57506001600160a01b0386166000908152600e602052604090205460ff165b156111785761109f6001878787612e7d565b9250846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516110e691815260200190565b60405180910390a361112b86336110fd8785614405565b6001600160a01b03928316600090815260026020908152604080832095909416825293909352912055600190565b50336001600160a01b0387167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256111628785614405565b60405190815260200160405180910390a36112a7565b60006064611187866063614418565b611191919061442f565b90506111a06001888884612e7d565b9350856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516111e791815260200190565b60405180910390a3611206876111fd8388614405565b60019190612f20565b60006001600160a01b0388167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef61123d8489614405565b60405190815260200160405180910390a361125d87336110fd8886614405565b50336001600160a01b0388167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256112948886614405565b60405190815260200160405180910390a3505b50509392505050565b7fca4b208a000000000000000000000000000000000000000000000000000000006112dd60078233612c73565b806112f657506112f660076303e1469160e61b33612c73565b15610dd45761130e600763ca4b208b60e01b33612fb9565b6113196007336130e3565b610dd160077fca4b208a00000000000000000000000000000000000000000000000000000000336131e2565b7fca4b208a0000000000000000000000000000000000000000000000000000000061137260078233612c73565b8061138b575061138b60076303e1469160e61b33612c73565b15610dd457610dd160077fca4b208a00000000000000000000000000000000000000000000000000000000336131e2565b6001600160a01b037f00000000000000000000000074ccbe53f77b08632ce0cb91d3a545bf6b8e097916300361145a5760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610966565b7f00000000000000000000000074ccbe53f77b08632ce0cb91d3a545bf6b8e09796001600160a01b03166114b57f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b0316146115315760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610966565b61153a81613301565b60408051600080825260208201909252610dd191839190613364565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600090819030906370a0823190602401602060405180830381865afa1580156115af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115d391906143bd565b90508083111561162657604051630330dbc960e11b815260206004820152601a60248201527f4d617832303a206973737566696369656e742062616c616e63650000000000006044820152606401610966565b61163260013385612f20565b6040518381526001925060009033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b50919050565b8161168260078233612c73565b8061169b575061169b60076303e1469160e61b33612c73565b15610dd4577fffffffff0000000000000000000000000000000000000000000000000000000083167fca4b208a00000000000000000000000000000000000000000000000000000000148061173157507fffffffff0000000000000000000000000000000000000000000000000000000083167f8da5cb5a00000000000000000000000000000000000000000000000000000000145b1561175757336001600160a01b03831603610dd457611752600784846131e2565b505050565b611752600784846131e2565b6001600160a01b037f00000000000000000000000074ccbe53f77b08632ce0cb91d3a545bf6b8e09791630036118015760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f64656c656761746563616c6c00000000000000000000000000000000000000006064820152608401610966565b7f00000000000000000000000074ccbe53f77b08632ce0cb91d3a545bf6b8e09796001600160a01b031661185c7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc546001600160a01b031690565b6001600160a01b0316146118d85760405162461bcd60e51b815260206004820152602c60248201527f46756e6374696f6e206d7573742062652063616c6c6564207468726f7567682060448201527f6163746976652070726f787900000000000000000000000000000000000000006064820152608401610966565b6118e182613301565b6118ed82826001613364565b5050565b6000306001600160a01b037f00000000000000000000000074ccbe53f77b08632ce0cb91d3a545bf6b8e097916146119915760405162461bcd60e51b815260206004820152603860248201527f555550535570677261646561626c653a206d757374206e6f742062652063616c60448201527f6c6564207468726f7567682064656c656761746563616c6c00000000000000006064820152608401610966565b507f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc90565b63ca4b208b60e01b6119ca60078233612c73565b806119e357506119e360076303e1469160e61b33612c73565b15610dd4576118ed60077fca4b208a0000000000000000000000000000000000000000000000000000000084612fb9565b63ca4b208b60e01b611a2860078233612c73565b80611a415750611a4160076303e1469160e61b33612c73565b15610dd457611a59600763ca4b208b60e01b84612fb9565b611a646007836130e3565b6118ed600763ca4b208b60e01b336131e2565b80611a8460078233612c73565b80611a9d5750611a9d60076303e1469160e61b33612c73565b15610dd4576118ed600783336131e2565b6001600160a01b038116600090815260016020526040812054610cc4565b7f8da5cb5b00000000000000000000000000000000000000000000000000000000611af960078233612c73565b80611b125750611b1260076303e1469160e61b33612c73565b15610dd457611b2360076000613504565b610dd160077f8da5cb5b00000000000000000000000000000000000000000000000000000000336131e2565b60146020526000908152604090208054611b6890614294565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9490614294565b8015611be15780601f10611bb657610100808354040283529160200191611be1565b820191906000526020600020905b815481529060010190602001808311611bc457829003601f168201915b505050505081565b611bfc600763ca4b208b60e01b33612c73565b15610dd457601180546001600160a01b0383167fffffffffffffffffffffffff000000000000000000000000000000000000000090911617905550565b7f8da5cb5a00000000000000000000000000000000000000000000000000000000611c6660078233612c73565b80611c7f5750611c7f60076303e1469160e61b33612c73565b15610dd457611cb060077f8da5cb5b0000000000000000000000000000000000000000000000000000000033612fb9565b611cbb600733613504565b610dd160077f8da5cb5a00000000000000000000000000000000000000000000000000000000336131e2565b611cfa600763ca4b208b60e01b33612c73565b15610dd457805160005b8181101561175257611d39838281518110611d2157611d2161446a565b6020026020010151600b612d7390919063ffffffff16565b600101611d04565b611d54600763ca4b208b60e01b33612c73565b15610dd457601555565b6060610cd660016135a1565b7f8da5cb5a00000000000000000000000000000000000000000000000000000000611d9760078233612c73565b80611db05750611db060076303e1469160e61b33612c73565b15610dd457610dd160077f8da5cb5a00000000000000000000000000000000000000000000000000000000336131e2565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152336004820152600090819030906370a0823190602401602060405180830381865afa158015611e3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e5e91906143bd565b90506001600160a01b038416611eb757604051630330dbc960e11b815260206004820152601460248201527f4d617832303a20746f20616464726573732830290000000000000000000000006044820152606401610966565b80831115611f0857604051630330dbc960e11b815260206004820152601a60248201527f4d617832303a206973737566696369656e742062616c616e63650000000000006044820152606401610966565b6001600160a01b0384166000908152600e602052604090205460ff1680611f3e5750336000908152600e602052604090205460ff165b15611fa457611f506001338686612e7d565b9150836001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611f9791815260200190565b60405180910390a361206a565b60006064611fb3856063614418565b611fbd919061442f565b9050611fcc6001338784612e7d565b9250846001600160a01b0316336001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161201391815260200190565b60405180910390a3612029336111fd8387614405565b6000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6120578488614405565b60405190815260200160405180910390a3505b5092915050565b63ca4b208b60e01b61208560078233612c73565b8061209e575061209e60076303e1469160e61b33612c73565b15610dd4576120af600760006130e3565b610dd1600763ca4b208b60e01b336131e2565b6120d5600763ca4b208b60e01b33612c73565b15610dd457610dd1600b826135b2565b6120f8600763ca4b208b60e01b33612c73565b15610dd457601280547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0383169081179091556040517f87bf030d6c6aa55db1e81d52f84962fc04ce1d477e64e50d57d3a91c52296f9390600090a250565b33600090815260016020526040902054808211156121a9576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61ffff8316600090815260146020526040902080546121c790614294565b905060000361221957604051630330dbc960e11b815260206004820152601160248201527f546f6b656e3a205452206e6f74207365740000000000000000000000000000006044820152606401610966565b600061222660648461442f565b336000908152600e60205260408120549192509060ff16156122f85761224c8285614405565b60115490915061226a9060019033906001600160a01b031685612e7d565b506011546040518381526001600160a01b039091169033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36122bb60013383612f20565b60405181815260009033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36123c4565b612303826002614418565b61230d9085614405565b9050600061231b8386614405565b6011549091506123399060019033906001600160a01b031686612e7d565b506011546040518481526001600160a01b039091169033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a361238a60013383612f20565b60405181815260009033907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505b604080513360208201528082018390528151808203830181526060820183526015547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526012547f40a7bb100000000000000000000000000000000000000000000000000000000090945290926001926000916001600160a01b0316906340a7bb109061247b908c90309089908790899060a601614499565b6040805180830381865afa158015612497573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124bb91906144df565b5090503481111561250f57604051630330dbc960e11b815260206004820152601660248201527f546f6b656e3a206d65737361676520666565206c6f77000000000000000000006044820152606401610966565b60125461ffff8a1660009081526014602052604080822090517fc58031000000000000000000000000000000000000000000000000000000000081526001600160a01b039093169263c5803100923492612574928f928b913391908b90600401614503565b6000604051808303818588803b15801561258d57600080fd5b505af11580156125a1573d6000803e3d6000fd5b5050505050505050505050505050565b61ffff851660009081526013602052604080822090516125d29087906143a1565b908152604080516020928190038301902067ffffffffffffffff8716600090815292529020600181015490915061264c57604051630330dbc960e11b815260206004820152600560248201527f4e42523a340000000000000000000000000000000000000000000000000000006044820152606401610966565b80548214158061267757508060010154838360405161266c9291906145e8565b604051809103902014155b156126c557604051630330dbc960e11b815260206004820152600560248201527f4e42523a350000000000000000000000000000000000000000000000000000006044820152606401610966565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a822906127139089908990899089908990600401614623565b600060405180830381600087803b15801561272d57600080fd5b505af1158015612741573d6000803e3d6000fd5b50505050505050505050565b7f8da5cb5b0000000000000000000000000000000000000000000000000000000061277a60078233612c73565b80612793575061279360076303e1469160e61b33612c73565b15610dd4576118ed60077f8da5cb5a0000000000000000000000000000000000000000000000000000000084612fb9565b600054610100900460ff16158080156127e45750600054600160ff909116105b806127fe5750303b1580156127fe575060005460ff166001145b6128705760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152608401610966565b6000805460ff1916600117905580156128b057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b6128bf868660128787876136b3565b6128c76137c8565b801561292a57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050565b6001600160a01b038083166000908152600260209081526040808320938516835292905290812054610d4b565b8161296c60078233612c73565b80612985575061298560076303e1469160e61b33612c73565b15610dd4577fffffffff0000000000000000000000000000000000000000000000000000000083167fca4b208a000000000000000000000000000000000000000000000000000000001480612a1b57507fffffffff0000000000000000000000000000000000000000000000000000000083167f8da5cb5a00000000000000000000000000000000000000000000000000000000145b15612a52576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61175260078484612fb9565b612a71600763ca4b208b60e01b33612c73565b15610dd45761ffff83166000908152601460205260409020612a948284836146a9565b507f93c35c217d799290d33244ef8905b63167d13758ab18343cd8055ed1b8056748838383604051612ac8939291906147a6565b60405180910390a1505050565b7f8da5cb5b00000000000000000000000000000000000000000000000000000000612b0260078233612c73565b80612b1b5750612b1b60076303e1469160e61b33612c73565b15610dd457612b4c60077f8da5cb5b0000000000000000000000000000000000000000000000000000000084612fb9565b612b57600783613504565b6118ed60077f8da5cb5b00000000000000000000000000000000000000000000000000000000336131e2565b612b96600763ca4b208b60e01b33612c73565b15610dd457805160005b8181101561175257612bd5838281518110612bbd57612bbd61446a565b6020026020010151600b6135b290919063ffffffff16565b600101612ba0565b6060816004018054612bee90614294565b80601f0160208091040260200160405190810160405280929190818152602001828054612c1a90614294565b8015612c675780601f10612c3c57610100808354040283529160200191612c67565b820191906000526020600020905b815481529060010190602001808311612c4a57829003601f168201915b50505050509050919050565b60006001600160a01b038216612cb5576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b03166000908152602092835260408082207fffffffff000000000000000000000000000000000000000000000000000000009390931682529190925290205460ff1690565b60008082806020019051810190612d1991906147c4565b9092509050612d2a60018383613847565b6040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050505050565b6001600160a01b038116600090815260038301602052604090205460ff1615612ddf57604051630330dbc960e11b815260206004820152600760248201527f4c697374733a31000000000000000000000000000000000000000000000000006044820152606401610966565b6001600160a01b03811660009081526003830160205260409020805460ff19166001908117909155612e1690830180546001019055565b6001600160a01b0381166000818152600384016020908152604080832054815193845260ff161515918301919091528101919091527f42fa9f1391f36d7a12900fccb1e67467edf81e7f3771d34cbd23a4fe01f473e0906060015b60405180910390a15050565b6001600160a01b03831660009081526020859052604081205480831115612ee757604051630330dbc960e11b815260206004820152600760248201527f4d617832303a31000000000000000000000000000000000000000000000000006044820152606401610966565b50506001600160a01b03808416600090815260208690526040808220805485900390559184168152208054820190556001949350505050565b6001600160a01b03821660009081526020849052604090205480821115612f8a57604051630330dbc960e11b815260206004820152600760248201527f4d617832303a31000000000000000000000000000000000000000000000000006044820152606401610966565b6001600160a01b0390921660009081526020849052604090209181900390915560029091018054919091039055565b6001600160a01b038116612ff9576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613004838383612c73565b1561305257604051630330dbc960e11b815260206004820152600760248201527f526f6c65733a31000000000000000000000000000000000000000000000000006044820152606401610966565b6001600160a01b0381166000818152602085815260408083207fffffffff00000000000000000000000000000000000000000000000000000000871680855290835292819020805460ff19166001908117909155815193845291830193909352918101919091527fc8bed56f8e046b5a3f2c2b2be85045ea5c972dc18ad669157957897b4d26e9f790606001612ac8565b6130f58263ca4b208b60e01b83612c73565b15613167576002820180546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f2cfca82ac51c2fc6b6db547820d28d526a505e12d230afb8bf112a5aeefa9a4c90600090a3505050565b6001600160a01b038116610dd4576003820180546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907ff8ccb027dfcd135e000e9d45e6cc2d662578a8825d4c45b5e32e0adf67e79ec690600090a3505050565b6001600160a01b038116613222576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61322d838383612c73565b61327a57604051630330dbc960e11b815260206004820152600760248201527f526f6c65733a32000000000000000000000000000000000000000000000000006044820152606401610966565b6001600160a01b0381166000818152602085815260408083207fffffffff000000000000000000000000000000000000000000000000000000008716808552908352818420805460ff19169055815190815291820193909352918201527fc8bed56f8e046b5a3f2c2b2be85045ea5c972dc18ad669157957897b4d26e9f790606001612ac8565b6303e1469160e61b61331560078233612c73565b8061332e575061332e60076303e1469160e61b33612c73565b6118ed576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b7f4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd91435460ff161561339757611752836138db565b826001600160a01b03166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156133f1575060408051601f3d908101601f191682019092526133ee918101906143bd565b60015b6134635760405162461bcd60e51b815260206004820152602e60248201527f45524331393637557067726164653a206e657720696d706c656d656e7461746960448201527f6f6e206973206e6f7420555550530000000000000000000000000000000000006064820152608401610966565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc81146134f85760405162461bcd60e51b815260206004820152602960248201527f45524331393637557067726164653a20756e737570706f727465642070726f7860448201527f6961626c655555494400000000000000000000000000000000000000000000006064820152608401610966565b506117528383836139b1565b61352f827f8da5cb5b0000000000000000000000000000000000000000000000000000000083612c73565b15613167576001820180546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3505050565b6060816005018054612bee90614294565b6001600160a01b038116600090815260038301602052604090205460ff1661361d57604051630330dbc960e11b815260206004820152600760248201527f4c697374733a32000000000000000000000000000000000000000000000000006044820152606401610966565b6001600160a01b03811660009081526003830160205260409020805460ff1916905561364f6002830180546001019055565b6001600160a01b03811660008181526003840160209081526040918290205482516001815260ff909116151591810191909152908101919091527f42fa9f1391f36d7a12900fccb1e67467edf81e7f3771d34cbd23a4fe01f473e090606001612e71565b600054610100900460ff166137305760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610966565b61373b6001876139d6565b6137466001866139e4565b6004805460ff191660ff861617905561376860076303e1469160e61b85612fb9565b6137736007846139f2565b613786600763ca4b208b60e01b84612fb9565b6137916007836130e3565b6137bd60077f8da5cb5b0000000000000000000000000000000000000000000000000000000083612fb9565b61292a600782613504565b600054610100900460ff166138455760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610966565b565b6001600160a01b03821661389e57604051630330dbc960e11b815260206004820152600760248201527f4d617832303a32000000000000000000000000000000000000000000000000006044820152606401610966565b808360020160008282546138b291906147f2565b90915550506001600160a01b039091166000908152602092909252604090912080549091019055565b6001600160a01b0381163b6139585760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610966565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6139ba83613a76565b6000825111806139c75750805b1561175257610b478383613ab6565b600482016117528282614805565b600582016117528282614805565b613a04826303e1469160e61b83612c73565b15613167576003820180546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907ff8ccb027dfcd135e000e9d45e6cc2d662578a8825d4c45b5e32e0adf67e79ec690600090a3505050565b613a7f816138db565b6040516001600160a01b038216907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a250565b60606001600160a01b0383163b613b355760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610966565b600080846001600160a01b031684604051613b5091906143a1565b600060405180830381855af49150503d8060008114613b8b576040519150601f19603f3d011682016040523d82523d6000602084013e613b90565b606091505b5091509150613bb8828260405180606001604052806027815260200161490260279139613bc1565b95945050505050565b60608315613bd0575081610d4b565b610d4b8383815115613be55781518083602001fd5b8060405162461bcd60e51b81526004016109669190613e1e565b803561ffff81168114613c1157600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715613c6e57613c6e613c16565b604052919050565b600082601f830112613c8757600080fd5b813567ffffffffffffffff811115613ca157613ca1613c16565b613cb46020601f19601f84011601613c45565b818152846020838601011115613cc957600080fd5b816020850160208301376000918101602001919091529392505050565b803567ffffffffffffffff81168114613c1157600080fd5b60008060008060808587031215613d1457600080fd5b613d1d85613bff565b9350602085013567ffffffffffffffff80821115613d3a57600080fd5b613d4688838901613c76565b9450613d5460408801613ce6565b93506060870135915080821115613d6a57600080fd5b50613d7787828801613c76565b91505092959194509250565b80357fffffffff0000000000000000000000000000000000000000000000000000000081168114613c1157600080fd5b600060208284031215613dc557600080fd5b610d4b82613d83565b60005b83811015613de9578181015183820152602001613dd1565b50506000910152565b60008151808452613e0a816020860160208601613dce565b601f01601f19169290920160200192915050565b602081526000610d4b6020830184613df2565b6001600160a01b0381168114610dd157600080fd5b60008060408385031215613e5957600080fd5b8235613e6481613e31565b946020939093013593505050565b60008060408385031215613e8557600080fd5b613e8e83613d83565b91506020830135613e9e81613e31565b809150509250929050565b600060208284031215613ebb57600080fd5b8135610d4b81613e31565b600080600060608486031215613edb57600080fd5b8335613ee681613e31565b92506020840135613ef681613e31565b929592945050506040919091013590565b600060208284031215613f1957600080fd5b5035919050565b60008060408385031215613f3357600080fd5b8235613f3e81613e31565b9150602083013567ffffffffffffffff811115613f5a57600080fd5b613f6685828601613c76565b9150509250929050565b600060208284031215613f8257600080fd5b610d4b82613bff565b60006020808385031215613f9e57600080fd5b823567ffffffffffffffff80821115613fb657600080fd5b818501915085601f830112613fca57600080fd5b813581811115613fdc57613fdc613c16565b8060051b9150613fed848301613c45565b818152918301840191848101908884111561400757600080fd5b938501935b83851015614031578435925061402183613e31565b828252938501939085019061400c565b98975050505050505050565b60008060006060848603121561405257600080fd5b61405b84613bff565b9250602084013567ffffffffffffffff81111561407757600080fd5b61408386828701613c76565b925050604084013590509250925092565b600080604083850312156140a757600080fd5b613e6483613bff565b60008083601f8401126140c257600080fd5b50813567ffffffffffffffff8111156140da57600080fd5b6020830191508360208285010111156140f257600080fd5b9250929050565b60008060008060006080868803121561411157600080fd5b61411a86613bff565b9450602086013567ffffffffffffffff8082111561413757600080fd5b61414389838a01613c76565b955061415160408901613ce6565b9450606088013591508082111561416757600080fd5b50614174888289016140b0565b969995985093965092949392505050565b600080600080600060a0868803121561419d57600080fd5b853567ffffffffffffffff808211156141b557600080fd5b6141c189838a01613c76565b965060208801359150808211156141d757600080fd5b506141e488828901613c76565b94505060408601356141f581613e31565b9250606086013561420581613e31565b9150608086013561421581613e31565b809150509295509295909350565b6000806040838503121561423657600080fd5b8235613e8e81613e31565b60008060006040848603121561425657600080fd5b61425f84613bff565b9250602084013567ffffffffffffffff81111561427b57600080fd5b614287868287016140b0565b9497909650939450505050565b600181811c908216806142a857607f821691505b60208210810361166f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008083546142ef81614294565b60018281168015614307576001811461431c5761434b565b60ff198416875282151583028701945061434b565b8760005260208060002060005b858110156143425781548a820152908401908201614329565b50505082870194505b50929695505050505050565b61ffff851681526080602082015260006143746080830186613df2565b67ffffffffffffffff8516604084015282810360608401526143968185613df2565b979650505050505050565b600082516143b3818460208701613dce565b9190910192915050565b6000602082840312156143cf57600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b81810381811115610cc457610cc46143d6565b8082028115828204841417610cc457610cc46143d6565b600082614465577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b61ffff861681526001600160a01b038516602082015260a0604082015260006144c560a0830186613df2565b841515606084015282810360808401526140318185613df2565b600080604083850312156144f257600080fd5b505080516020909101519092909150565b61ffff871681526000602060c0818401526000885461452181614294565b8060c087015260e0600180841660008114614543576001811461455d5761458b565b60ff198516838a01528284151560051b8a0101955061458b565b8d6000528660002060005b858110156145835781548b8201860152908301908801614568565b8a0184019650505b505050505083810360408501526145a28189613df2565b9150506145ba60608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a08401526145db8185613df2565b9998505050505050505050565b8183823760009101908152919050565b818352818160208501375060006020828401015260006020601f19601f840116840101905092915050565b61ffff861681526080602082015260006146406080830187613df2565b67ffffffffffffffff8616604084015282810360608401526140318185876145f8565b601f82111561175257600081815260208120601f850160051c8101602086101561468a5750805b601f850160051c820191505b8181101561292a57828155600101614696565b67ffffffffffffffff8311156146c1576146c1613c16565b6146d5836146cf8354614294565b83614663565b6000601f84116001811461472757600085156146f15750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b17835561479f565b600083815260209020601f19861690835b828110156147585786850135825560209485019460019092019101614738565b5086821015614793577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b61ffff84168152604060208201526000613bb86040830184866145f8565b600080604083850312156147d757600080fd5b82516147e281613e31565b6020939093015192949293505050565b80820180821115610cc457610cc46143d6565b815167ffffffffffffffff81111561481f5761481f613c16565b6148338161482d8454614294565b84614663565b602080601f83116001811461488657600084156148505750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b17855561292a565b600085815260208120601f198616915b828110156148b557888601518255948401946001909101908401614896565b50858210156148f157878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b0190555056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a264697066735822122096cb03c8200764814e69f0a0cc0cf8f771d6cd4d182d5ec8b53e3aa0a5ff410d64736f6c63430008130033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.