    function createVesting(address _beneficiary, uint256 _totalAmount, address _stepVesting) external {
        require(
            _tokenOwner[msg.sender] == address(SecondSwap_StepVesting(_stepVesting).token()),
            "SS_VestingDeployer: caller is not the token owner"
        ); // 3.2. Arbitrary transfer of vesting
        SecondSwap_StepVesting(_stepVesting).createVesting(_beneficiary, _totalAmount);
        emit VestingCreated(_beneficiary, _totalAmount, _stepVesting);
    }
    function createVestings(
        address[] memory _beneficiaries,
        uint256[] memory _totalAmounts,
        address _stepVesting
    ) external {
        require(
            _tokenOwner[msg.sender] == address(SecondSwap_StepVesting(_stepVesting).token()),
            "SS_VestingDeployer: caller is not the token owner"
        ); // 3.2. Arbitrary transfer of vesting
        SecondSwap_StepVesting(_stepVesting).createVestings(_beneficiaries, _totalAmounts);
        for (uint256 i = 0; i < _beneficiaries.length; i++) {
            emit VestingCreated(_beneficiaries[i], _totalAmounts[i], _stepVesting);
        }
    }
